We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac14441 commit e079ab7Copy full SHA for e079ab7
.github/workflows/build.yml
@@ -167,3 +167,21 @@ jobs:
167
build_dir: ../www
168
env:
169
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
170
+
171
+ release:
172
+ needs: build
173
+ if: contains(needs.*.result, 'success') && contains(github.ref, '/tags/v')
174
+ runs-on: ubuntu-latest
175
+ steps:
176
+ - name: download artifact
177
+ uses: actions/download-artifact@v4
178
+ with:
179
+ pattern: pypangolin_wheel_*
180
+ merge-multiple: true
181
+ path: ./
182
183
+ - name: create release
184
+ uses: ncipollo/release-action@v1
185
186
+ artifacts: pypangolin-*.whl
187
+ artifactErrorsFailBuild: true
0 commit comments