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 4ae9c91 commit 78afe4eCopy full SHA for 78afe4e
.github/workflows/tests+artifacts.yml
@@ -84,3 +84,18 @@ jobs:
84
name: dist
85
path: dist
86
- run: twine check --strict dist/*
87
+
88
+ dist_upload:
89
+ runs-on: ubuntu-latest
90
+ if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
91
+ needs: [dist_check]
92
+ steps:
93
+ - uses: actions/download-artifact@v2
94
+ with:
95
+ name: dist
96
+ path: dist
97
+ - uses: pypa/gh-action-pypi-publish@master
98
99
+ user: __token__
100
+ password: ${{ secrets.TEST_PYPI_API_TOKEN }}
101
+ repository_url: https://test.pypi.org/legacy/
0 commit comments