Skip to content

Commit ba56b9f

Browse files
authored
Fix release script (#3)
1 parent 0d0f307 commit ba56b9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Verify tag
3333
if: github.event_name == 'push'
3434
run: |
35-
if [ '${{ github.ref_name }}' != 'v${{ needs.test.outputs.PackageVersion }}' ]; do
35+
if [ '${{ github.ref_name }}' != 'v${{ needs.test.outputs.PackageVersion }}' ]; then
3636
echo "::error title=Incorrect Tag::The tag ${{ github.ref_name }} does not match the package version ${{ needs.test.outputs.PackageVersion }}"
3737
exit 1
3838
fi

0 commit comments

Comments
 (0)