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 18b87ca commit 354efbcCopy full SHA for 354efbc
.github/main.workflow
.github/workflows/release.yml
@@ -0,0 +1,18 @@
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@master
12
+ - name: PyPI Upload
13
+ uses: FeatureLabs/gh-action-pypi-upload@master
14
+ env:
15
+ PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
16
+ PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
17
+ TEST_PYPI_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
18
+ TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
0 commit comments