Skip to content

Commit

Permalink
Fix typo in bash script in release workflow (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalchecinski committed Mar 22, 2023
1 parent 1666e5b commit 30880c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Branch check
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
run: |
if [[ "$GITHUB_REF" != "refs/heads/master" ]] then
if [[ "$GITHUB_REF" != "refs/heads/master" ]]; then
echo "==================================="
echo "[!] Can only release from the 'master' branch"
echo "==================================="
Expand Down

0 comments on commit 30880c0

Please sign in to comment.