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 603dd57 commit 42080dcCopy full SHA for 42080dc
.github/workflows/release.yml
@@ -0,0 +1,25 @@
1
+---
2
+name: Release
3
+
4
+"on":
5
+ release:
6
+ types:
7
+ - published
8
9
+jobs:
10
+ pypi-publish:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ # https://docs.pypi.org/trusted-publishers/
14
+ id-token: write
15
+ steps:
16
+ - uses: actions/checkout@v3
17
18
+ - name: Install poetry
19
+ run: pipx install poetry
20
21
+ - run: poetry build
22
23
24
+ - name: Publish to PyPI
25
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments