1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-22 12:04:27 -05:00

Remove 'rc-2022.12' logic (#2475)

This commit is contained in:
Vince Grassia 2022-12-05 20:24:44 -05:00 committed by GitHub
parent c25ef0be5c
commit a98a5d8dc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ jobs:
- name: Check Branch to Publish - name: Check Branch to Publish
env: env:
PUBLISH_BRANCHES: "master,rc,hotfix-rc,rc-2022.12" PUBLISH_BRANCHES: "master,rc,hotfix-rc"
id: publish-branch-check id: publish-branch-check
run: | run: |
IFS="," read -a publish_branches <<< $PUBLISH_BRANCHES 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 IMAGE_TAG=$(echo "${GITHUB_REF:11}" | sed "s#/#-#g") # slash safe branch name
if [[ "$IMAGE_TAG" == "master" ]]; then if [[ "$IMAGE_TAG" == "master" ]]; then
IMAGE_TAG=dev IMAGE_TAG=dev
elif [[ "$IMAGE_TAG" == "rc-2022.12" ]]; then elif [[ "$IMAGE_TAG" == "rc" ]] || [[ "$IMAGE_TAG" == "hotfix-rc" ]]; then
IMAGE_TAG=beta IMAGE_TAG=beta
fi fi