Skip to content

Commit

Permalink
Merge pull request #12 from neumantm/ciPublishOnlyTags
Browse files Browse the repository at this point in the history
fix(ci): Only publish on tags
  • Loading branch information
neumantm authored Jul 29, 2022
2 parents ba11034 + 20e0ca6 commit 20a81e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
publish:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v3
Expand Down

0 comments on commit 20a81e4

Please sign in to comment.