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 8850161 commit bfbde3bCopy full SHA for bfbde3b
.github/workflows/release.yml
@@ -2,6 +2,8 @@ name: release
2
3
on:
4
push:
5
+ branches:
6
+ - master
7
tags:
8
- 'v[0-9]+.[0-9]+.[0-9]+'
9
@@ -11,6 +13,7 @@ jobs:
11
13
12
14
pypi-publish:
15
needs: tests
16
+ if: ${{ startsWith(github.ref, 'refs/tags/v') }}
17
permissions:
18
id-token: write
19
environment:
.github/workflows/tox.yml
@@ -1,8 +1,6 @@
1
name: tox CI
- push:
- branches: [ master ]
pull_request:
branches: [ master ]
0 commit comments