We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8efe9ec commit 80e42d0Copy full SHA for 80e42d0
1 file changed
.github/workflows/deploy.yml
@@ -0,0 +1,29 @@
1
+name: deploy
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
10
+ pypi:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Setup Python
15
+ uses: actions/setup-python@v2
16
+ with:
17
+ python-version: 3.11
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip setuptools wheel build
21
+ - name: Build
22
23
+ python -m build
24
+ - name: Publish
25
+ if: success()
26
+ uses: pypa/gh-action-pypi-publish@v1.1.0
27
28
+ user: __token__
29
+ password: ${{ secrets.PYPI_TOKEN }}
0 commit comments