Skip to content

Commit

Permalink
ci: allow unrestricted alpha/beta builds if on strict branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuef authored and RolandSherwin committed Apr 15, 2024
1 parent 5e56d86 commit 8eb22d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: provide network versioning
shell: bash
run: |
if [[ "$GITHUB_REF_NAME" != "main" && "$GITHUB_REF_NAME" != "stable" ]]; then
if [[ "$GITHUB_REF_NAME" != "main" && "$GITHUB_REF_NAME" != "stable" && "$GITHUB_REF_NAME" != "alpha" && "$GITHUB_REF_NAME" != "beta" ]]; then
echo "NETWORK_VERSION_MODE=restricted" >> $GITHUB_ENV
fi
Expand Down

0 comments on commit 8eb22d8

Please sign in to comment.