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 8c45928 commit 62fd5b4Copy full SHA for 62fd5b4
.github/workflows/tests.yml
@@ -103,3 +103,15 @@ jobs:
103
- uses: codecov/codecov-action@v2
104
with:
105
token: ${{ secrets.CODECOV_TOKEN }}
106
+
107
+ - name: Build package
108
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
109
+ run: poetry build
110
111
+ - name: Publish package
112
113
+ uses: pypa/gh-action-pypi-publish@release/v1
114
+ with:
115
+ user: __token__
116
+ password: ${{ secrets.PYPI_API_TOKEN }}
117
+ skip_existing: true
0 commit comments