We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faa7bf2 commit d68fe40Copy full SHA for d68fe40
.github/workflows/release.yml
@@ -66,5 +66,9 @@ jobs:
66
- 'README.md'
67
68
- name: Publish Python package
69
- if: steps.changes.outputs.publish == 'true' && github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
+ if: >
70
+ github.event_name != 'pull_request' && (
71
+ startsWith(github.ref, 'refs/tags/') ||
72
+ (github.ref == 'refs/heads/main' && steps.changes.outputs.publish == 'true')
73
+ )
74
run: uv publish
0 commit comments