Skip to content

Commit

Permalink
Fix Validate GitHub release step (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
reakaleek authored Jun 25, 2024
1 parent ae49a75 commit de98f7d
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 @@ -30,7 +30,7 @@ jobs:

- name: Validate GitHub release is not available yet
run: |
if gh release view "${{ github.ref_name }} > /dev/null ; then
if gh release view "${{ github.ref_name }}" > /dev/null ; then
echo "The GitHub release ${{ github.ref_name }} already exists"
exit 1
fi
Expand Down

0 comments on commit de98f7d

Please sign in to comment.