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