diff --git a/.github/workflows/build-self-host.yml b/.github/workflows/build-self-host.yml index 995153a5bf..e4ccb2eb2d 100644 --- a/.github/workflows/build-self-host.yml +++ b/.github/workflows/build-self-host.yml @@ -20,7 +20,7 @@ jobs: - name: Check Branch to Publish env: - PUBLISH_BRANCHES: "master,rc,hotfix-rc,rc-2022.12" + PUBLISH_BRANCHES: "master,rc,hotfix-rc" id: publish-branch-check run: | IFS="," read -a publish_branches <<< $PUBLISH_BRANCHES @@ -90,7 +90,7 @@ jobs: IMAGE_TAG=$(echo "${GITHUB_REF:11}" | sed "s#/#-#g") # slash safe branch name if [[ "$IMAGE_TAG" == "master" ]]; then IMAGE_TAG=dev - elif [[ "$IMAGE_TAG" == "rc-2022.12" ]]; then + elif [[ "$IMAGE_TAG" == "rc" ]] || [[ "$IMAGE_TAG" == "hotfix-rc" ]]; then IMAGE_TAG=beta fi