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 a82b13f commit acf68ebCopy full SHA for acf68eb
.github/workflows/ci.yml
@@ -29,7 +29,7 @@ jobs:
29
- run: echo "ci started"
30
31
build-python:
32
- if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
+ if: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/main' && inputs.create_release }}
33
runs-on: ubuntu-latest
34
outputs:
35
version: ${{ steps.version.outputs.version }}
@@ -68,7 +68,7 @@ jobs:
68
path: dist/
69
70
tests:
71
72
needs: build-python
73
strategy:
74
matrix:
0 commit comments