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.
2 parents 5aa22f6 + c41974d commit 21a0f26Copy full SHA for 21a0f26
.github/workflows/main.yml
@@ -1,17 +1,18 @@
1
name: tox
2
3
on:
4
- push:
5
- branches:
6
- - master
7
- - "[0-9]+.[0-9]+.x"
8
- tags:
9
- - "*"
10
-
+ create: # is used for publishing to PyPI and TestPyPI
+ tags: # any tag regardless of its name, no branches
+ push: # only publishes pushes to the main branch to TestPyPI
+ branches: # any branch but not tag
+ - >-
+ **
+ tags-ignore:
11
12
13
pull_request:
14
+ schedule:
15
+ - cron: 1 0 * * * # Run daily at 0:01 UTC
16
17
jobs:
18
build:
0 commit comments