We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d41a35 commit c76bfe2Copy full SHA for c76bfe2
.github/workflows/deploy.yml
@@ -0,0 +1,26 @@
1
+name: 🚀 Deploy to PyPI
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Set up Python 3.10
15
+ uses: actions/setup-python@v3
16
+ with:
17
+ python-version: '3.10'
18
+ - name: Build wheel and source tarball
19
+ run: |
20
+ pip install wheel
21
+ python setup.py sdist bdist_wheel
22
+ - name: Publish a Python distribution to PyPI
23
+ uses: pypa/[email protected]
24
25
+ user: __token__
26
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments