Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -440,9 +440,9 @@ jobs:
# Pick the band this release publishes under, based on release context.
if [[ "$IS_HIGHEST_STABLE_MAJOR" == "true" ]]; then
PRIMARY_BAND="latest"
SECONDARY_BAND="${MAJOR}"
SECONDARY_BAND="latest-${MAJOR}"
elif [[ "$IS_STABLE" == "true" ]]; then
PRIMARY_BAND="${MAJOR}"
PRIMARY_BAND="latest-${MAJOR}"
SECONDARY_BAND=""
elif [[ "$GIT_TAG" =~ -rc\. ]]; then
PRIMARY_BAND="rc"
Expand Down Expand Up @@ -545,9 +545,9 @@ jobs:
# Pick the band this release publishes under, based on release context.
if [[ "$IS_HIGHEST_STABLE_MAJOR" == "true" ]]; then
PRIMARY_BAND="latest"
SECONDARY_BAND="${MAJOR}"
SECONDARY_BAND="latest-${MAJOR}"
elif [[ "$IS_STABLE" == "true" ]]; then
PRIMARY_BAND="${MAJOR}"
PRIMARY_BAND="latest-${MAJOR}"
SECONDARY_BAND=""
elif [[ "$GIT_TAG" =~ -rc\. ]]; then
PRIMARY_BAND="rc"
Expand Down
Loading