We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0c7598 commit 026b3d6Copy full SHA for 026b3d6
.github/workflows/create_release.yml
@@ -26,14 +26,18 @@ jobs:
26
# Yes I know there won't be a changelog. But I really like main as a protected branch
27
changelog: "false"
28
github_token: ${{ secrets.GITHUB_TOKEN }}
29
+
30
+ # - name: check release state
31
+ # run: |
32
+ # echo "release: ${{ steps.release.outputs.released }}"
33
outputs:
34
release: ${{ steps.release.outputs.released }}
35
36
build_wheels:
- if: needs.release.outputs.release == 'true'
37
name: Build wheels on ${{ matrix.python-version }}
- needs: [release]
38
+ needs: release
39
runs-on: ubuntu-latest
40
+ if: needs.release.outputs.release == 'true'
41
strategy:
42
matrix:
43
python-version: ["3.9", "3.10"]
0 commit comments