Skip to content

Commit de98f7d

Browse files
authored
Fix Validate GitHub release step (#497)
1 parent ae49a75 commit de98f7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Validate GitHub release is not available yet
3232
run: |
33-
if gh release view "${{ github.ref_name }} > /dev/null ; then
33+
if gh release view "${{ github.ref_name }}" > /dev/null ; then
3434
echo "The GitHub release ${{ github.ref_name }} already exists"
3535
exit 1
3636
fi

0 commit comments

Comments
 (0)