File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ concurrency:
12
12
jobs :
13
13
test :
14
14
name : test ${{ matrix.py }} - ${{ matrix.os }}
15
+ if : github.event_name != 'schedule' || github.repository_owner == 'pypa'
15
16
runs-on : ${{ matrix.os }}
16
17
strategy :
17
18
fail-fast : false
@@ -137,6 +138,7 @@ jobs:
137
138
138
139
check :
139
140
name : ${{ matrix.tox_env }} - ${{ matrix.os }}
141
+ if : github.event_name != 'schedule' || github.repository_owner == 'pypa'
140
142
runs-on : ${{ matrix.os }}
141
143
strategy :
142
144
fail-fast : false
@@ -169,7 +171,6 @@ jobs:
169
171
UPGRADE_ADVISORY : " yes"
170
172
171
173
publish :
172
- if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
173
174
needs : [check, coverage]
174
175
runs-on : ubuntu-22.04
175
176
steps :
@@ -185,6 +186,7 @@ jobs:
185
186
- name : Build sdist and wheel
186
187
run : python -m build -s -w . -o dist
187
188
- name : Publish to PyPi
189
+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && github.repository_owner == 'pypa'
188
190
189
191
with :
190
192
skip_existing : true
You can’t perform that action at this time.
0 commit comments