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 100f238 commit e60b30bCopy full SHA for e60b30b
.github/workflows/tests.yml
@@ -97,3 +97,15 @@ jobs:
97
- uses: codecov/codecov-action@v2
98
with:
99
token: ${{ secrets.CODECOV_TOKEN }}
100
+
101
+ - name: Build package
102
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
103
+ run: poetry build
104
105
+ - name: Publish package
106
107
+ uses: pypa/gh-action-pypi-publish@release/v1
108
+ with:
109
+ user: __token__
110
+ password: ${{ secrets.PYPI_API_TOKEN }}
111
+ skip_existing: true
0 commit comments