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.
2 parents d748f83 + adf010d commit 21f54ffCopy full SHA for 21f54ff
.github/workflows/deploy.yml
@@ -0,0 +1,26 @@
1
+name: Distribute SCM
2
+
3
+on:
4
+ release:
5
+ types: [created]
6
7
+jobs:
8
+ deploy:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v1
14
+ with:
15
+ python-version: '3.x'
16
+ - name: Install dependencies
17
+ run: |
18
+ python -m pip install --upgrade pip
19
+ pip install setuptools wheel twine
20
+ - name: Build and publish
21
+ env:
22
+ TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
23
+ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
24
25
+ python setup.py sdist bdist_wheel
26
+ twine upload dist/*
0 commit comments