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 44b1456 commit 469b66eCopy full SHA for 469b66e
1 file changed
.github/workflows/deepgym-ci.yml
@@ -69,12 +69,11 @@ jobs:
69
70
- name: Build package
71
run: |
72
- pip install hatch
73
- hatch build
+ python -m pip install build twine
+ python -m build
74
75
- name: Publish to PyPI
76
- uses: pypa/gh-action-pypi-publish@release/v1
77
- with:
78
- packages-dir: deepgym/dist/
79
- user: __token__
80
- password: ${{ secrets.PYPI_API_TOKEN }}
+ env:
+ TWINE_USERNAME: __token__
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
+ run: python -m twine upload --non-interactive --skip-existing dist/*
0 commit comments