File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [push, pull_request]
5
5
jobs :
6
6
test :
7
7
name : Test on python2
8
- runs-on : ubuntu-latest
8
+ runs-on : ubuntu-20.04
9
9
steps :
10
10
- uses : actions/checkout@v3
11
11
23
23
build :
24
24
name : Build source/wheel distribution for python2
25
25
if : " (!contains(github.event.pull_request.labels.*.name, 'disable-test-build'))|| github.event_name == 'push' && endsWith(github.event.ref, 'scylla')"
26
- runs-on : ubuntu-latest
26
+ runs-on : ubuntu-20.04
27
27
steps :
28
28
- uses : actions/checkout@v3
29
29
41
41
42
42
upload_pypi :
43
43
needs : [build, test]
44
- runs-on : ubuntu-latest
44
+ runs-on : ubuntu-20.04
45
45
# upload to PyPI on every tag starting with 'v'
46
46
if : github.event_name == 'push' && endsWith(github.event.ref, 'scylla')
47
47
# alternatively, to publish when a GitHub Release is created, use the following rule:
You can’t perform that action at this time.
0 commit comments