8000
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 a7bf4e6 commit 9718734Copy full SHA for 9718734
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: Publish to PyPI
2
+
3
+on:
4
+ release:
5
+ types:
6
+ - released
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v2
14
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v2
17
+ with:
18
+ python-version: '3.10'
19
20
+ - name: Install Poetry
21
+ run: |
22
+ pip install poetry
23
24
+ - name: Configure Poetry
25
26
+ poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
27
28
+ - name: Build and Publish
29
30
+ poetry publish --build
0 commit comments