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 f32704b commit 21c0cabCopy full SHA for 21c0cab
.github/workflows/release.yaml
@@ -0,0 +1,20 @@
1
+on:
2
+ release:
3
+ types: [published]
4
+
5
+name: Release
6
+jobs:
7
+ pypi:
8
+ name: PyPI Release
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Remove docs before release
13
+ run: rm -rf docs/
14
+ - name: PyPI Upload
15
+ uses: FeatureLabs/gh-action-pypi-upload@v2
16
+ env:
17
+ PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
18
+ PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
19
+ TEST_PYPI_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
20
+ TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
0 commit comments