diff options
| author | Léo Vansimay | 2021-04-21 11:13:20 +0200 |
|---|---|---|
| committer | GitHub | 2021-04-21 11:13:20 +0200 |
| commit | 1b637cbb3b287e5607e78a2be4153eee6b8aa846 (patch) | |
| tree | 978773d86dbfb9702f3a2fbdad7b694f527794ef /.github/workflows/python-publish.yml | |
| parent | 806d5cc35ecd2bfc3abd6f234bcabc145ac4da70 (diff) | |
| download | sec-certs-1b637cbb3b287e5607e78a2be4153eee6b8aa846.tar.gz sec-certs-1b637cbb3b287e5607e78a2be4153eee6b8aa846.tar.zst sec-certs-1b637cbb3b287e5607e78a2be4153eee6b8aa846.zip | |
Update python-publish.yml
The build seems to work well, modify the rules to publish the package when a push or PR on master occurs
Diffstat (limited to '.github/workflows/python-publish.yml')
| -rw-r--r-- | .github/workflows/python-publish.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 0f442307..fb2b2323 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -3,7 +3,11 @@ name: Upload Python Package -on: [push] +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] jobs: deploy: |
