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.
2 parents eb0ef71 + 3d43c0f commit 3a20569Copy full SHA for 3a20569
1 file changed
.github/workflows/test_and_deploy.yml
@@ -48,8 +48,14 @@ jobs:
48
upload_all:
49
name: Publish build distributions
50
needs: [build_sdist_wheels]
51
+ if: github.event_name == 'push' && github.ref_type == 'tag'
52
runs-on: ubuntu-latest
53
steps:
- - uses: neuroinformatics-unit/actions/upload_pypi@v2
54
+ - uses: actions/download-artifact@v4
55
+ with:
56
+ name: artifact
57
+ path: dist
58
+ - uses: pypa/gh-action-pypi-publish@v1.12.3
59
with:
- secret-pypi-key: ${{ secrets.TWINE_API_KEY }}
60
+ user: __token__
61
+ password: ${{ secrets.TWINE_API_KEY }}
0 commit comments