We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b29510 commit 72894a8Copy full SHA for 72894a8
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,27 @@
1
+name: Publish
2
+on:
3
+ release:
4
+ types: [published]
5
+
6
+concurrency:
7
+ group: publish
8
9
+permissions:
10
+ # IMPORTANT: this permission is mandatory for trusted publishing
11
+ id-token: write
12
13
+jobs:
14
+ verify:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout Repo
18
+ uses: actions/checkout@v3
19
20
+ - name: Build and Verify
21
+ uses: ./.github/actions/verify
22
23
+ - name: Package
24
+ run: poetry build
25
26
+ - name: Publish
27
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments