File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -189,14 +189,11 @@ jobs:
189189 runs-on : ubuntu-20.04
190190 if : ${{ success() && github.event_name == 'push' && contains(github.ref, 'refs/tags/') }}
191191 steps :
192- - uses : actions/ checkout@v3
192+ # no need to checkout
193193 - uses : actions/setup-python@v4
194194 with :
195195 python-version : ' 3.9'
196- - name : Setup Poetry
197- uses : snok/install-poetry@v1
198- with :
199- version : 1.5.1
196+ - run : pip install twine
200197 - name : Download wheels built
201198 uses : actions/download-artifact@v3
202199 with :
@@ -205,8 +202,8 @@ jobs:
205202 - run : ls -lah ./dist/
206203 - name : Publish package
207204 run : |
208- poetry publish \
209- --no-interaction --skip-existing \
205+ twine upload dist/* \
206+ --non-interactive --skip-existing \
210207 --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}
211208 publish-nightly :
212209 # Implement a very basic Python package repository (https://peps.python.org/pep-0503/)
You can’t perform that action at this time.
0 commit comments