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 1fd53aa commit 82b4dffCopy full SHA for 82b4dff
.github/workflows/test_and_deploy.yml
@@ -57,8 +57,14 @@ jobs:
57
upload_all:
58
name: Publish build distributions
59
needs: [build_sdist_wheels]
60
+ if: github.event_name == 'push' && github.ref_type == 'tag'
61
runs-on: ubuntu-latest
62
steps:
- - uses: neuroinformatics-unit/actions/upload_pypi@v2
63
+ - uses: actions/download-artifact@v4
64
+ with:
65
+ name: artifact
66
+ path: dist
67
+ - uses: pypa/gh-action-pypi-publish@v1.12.3
68
with:
- secret-pypi-key: ${{ secrets.TWINE_API_KEY }}
69
+ user: __token__
70
+ password: ${{ secrets.TWINE_API_KEY }}
0 commit comments