This is an automated email from the ASF dual-hosted git repository. fcsaky pushed a commit to branch docs-ci-rsync-dev in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
commit ec785003f91300081d6acf4c2e2e4ae4679f9f47 Author: Ferenc Csaky <[email protected]> AuthorDate: Mon Sep 29 21:26:44 2025 +0200 dev --- .github/workflows/docs.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 4a2ee06e..3ae32ef2 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -30,9 +30,7 @@ jobs: max-parallel: 1 matrix: branch: - - main - - release-1.13 - - release-1.12 + - docs-ci-rsync-dev steps: - name: Set up Temurin JDK 17 uses: actions/setup-java@v4 @@ -48,14 +46,10 @@ jobs: currentBranch=$(git branch --show-current) echo "flink_branch=${currentBranch}" echo "flink_branch=${currentBranch}" >> ${GITHUB_ENV} - if [ "${currentBranch}" = "main" ]; then + if [ "${currentBranch}" = "docs-ci-rsync-dev" ]; then echo "flink_alias=release-1.14" >> ${GITHUB_ENV} - elif [ "${currentBranch}" = "release-1.13" ]; then - echo "flink_alias=stable" >> ${GITHUB_ENV} - else - echo "flink_alias=${currentBranch}" >> ${GITHUB_ENV} fi - - name: Build documentation (no Docker) + - name: Build documentation run: | if ! curl --fail -OL "$HUGO_REPO" ; then echo "Failed to download Hugo binary"
