Skip to content

Commit

Permalink
fix check-tag condition in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
svirpioj committed Oct 11, 2023
1 parent a009d55 commit 099e25b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
id: check-tag
run: |
if [[ ${{ github.event.ref }} =~ ^refs/tags/[0-9]+\.[0-9]+\.[0-9]+(rc[0-9]*)?$ ]]; then
echo "{match}={true}" >> $GITHUB_OUTPUT
echo "match=true" >> $GITHUB_OUTPUT
fi
- name: Set up Python 3.7
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
Expand Down

0 comments on commit 099e25b

Please sign in to comment.