We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f69ca62 commit dba0c99Copy full SHA for dba0c99
.github/workflows/release.yml
@@ -40,8 +40,10 @@ jobs:
40
run: make set-version
41
- name: Build binary wheel and source tarball
42
run: make dist
43
- - name: Publish package
44
- uses: pypa/gh-action-pypi-publish@release/v1.11
45
- with:
46
- user: __token__
47
- password: ${{ secrets.PYPI_TOKEN }}
+ - name: Install publish dependencies
+ run: python -m pip install twine~=6.1
+ - name: Push to pypi
+ run: |
+ export TWINE_USERNAME=__token__
48
+ export TWINE_PASSWORD=${{ secrets.PYPI_TOKEN }}
49
+ python -m twine upload dist/storey-*.whl
0 commit comments