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 74c36bc commit 5691f90Copy full SHA for 5691f90
.github/workflows/tox.yml
@@ -4,9 +4,10 @@ on:
4
create: # is used for publishing to PyPI and TestPyPI
5
tags: # any tag regardless of its name, no branches
6
push: # only publishes pushes to the main branch to TestPyPI
7
- branches: # any branch but not tag
8
- - >-
9
- **
+ branches: # any maintenance branch but not tag
+ # avoid generic ** as it duplicates builds from temporary branches
+ - "master"
10
+ - "stable/**"
11
tags-ignore:
12
- >-
13
**
0 commit comments