Browse Source

Updating the hotfix release branch name to hotfix-rc

pull/2440/head
Joseph Flinn 4 years ago
parent
commit
609f21f203
  1. 4
      .github/workflows/release.yml

4
.github/workflows/release.yml

@ -26,9 +26,9 @@ jobs: @@ -26,9 +26,9 @@ jobs:
- name: Branch check
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
run: |
if [[ "$GITHUB_REF" != "refs/heads/rc" ]] && [[ "$GITHUB_REF" != "refs/heads/hotfix" ]]; then
if [[ "$GITHUB_REF" != "refs/heads/rc" ]] && [[ "$GITHUB_REF" != "refs/heads/hotfix-rc" ]]; then
echo "==================================="
echo "[!] Can only release from the 'rc' or 'hotfix' branches"
echo "[!] Can only release from the 'rc' or 'hotfix-rc' branches"
echo "==================================="
exit 1
fi

Loading…
Cancel
Save