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.
2 parents 60b764c + 9b4c8c5 commit a7c9fccCopy full SHA for a7c9fcc
.github/workflows/ci.yml
@@ -144,19 +144,12 @@ jobs:
144
steps:
145
- uses: actions/checkout@v3
146
147
- - name: Set up Python 3.7 🐍
148
- uses: actions/setup-python@v1
149
- with:
150
- python-version: '3.7'
+ - uses: ./.github/actions/common-setup
151
152
- - name: Build 🔨
153
- run: |
154
- python -m pip install wheel
155
- python setup.py sdist
156
- python setup.py bdist_wheel
+ - name: Build package
+ run: poetry build
157
158
- name: Publish on PyPI 🚀
159
- uses: pypa/[email protected]
160
161
- user: __token__
162
- password: ${{ secrets.ACCESS_TOKEN }}
+ run: poetry publish
+ env:
+ POETRY_PYPI_TOKEN_PYPI: ${{ secrets.ACCESS_TOKEN }}
0 commit comments