We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f88e93d commit 3aef0ccCopy full SHA for 3aef0cc
1 file changed
.github/workflows/main.yml
@@ -4,7 +4,7 @@ on: [push, pull_request]
4
5
jobs:
6
build:
7
-
+ name: Test run
8
runs-on: ubuntu-latest
9
strategy:
10
matrix:
@@ -41,7 +41,15 @@ jobs:
41
run: pip install tox
42
- name: Run tox e2e tests
43
run: tox -e integration
44
45
46
47
+
+ deploy:
+ name: Build deploy
+ runs-on: ubuntu-latest
48
+ steps:
49
+ - uses: actions/checkout@v2
50
+ - uses: casperdcl/deploy-pypi@v1
51
+ if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
52
+ with:
53
+ password: ${{ secrets.PYPI_TOKEN }}
54
+ build: true
55
0 commit comments