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 3bf6342 commit ff9321bCopy full SHA for ff9321b
.github/workflows/tests.yml
@@ -38,3 +38,14 @@ jobs:
38
- uses: codecov/codecov-action@v2
39
with:
40
token: ${{ secrets.CODECOV_TOKEN }}
41
+
42
+ - name: Build package
43
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
44
+ run: poetry build
45
46
+ - name: Publish package
47
48
+ uses: pypa/gh-action-pypi-publish@release/v1
49
+ with:
50
+ user: __token__
51
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments