File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ permissions:
14
14
15
15
jobs :
16
16
lint :
17
- runs-on : ubuntu-latest
17
+ runs-on : ${{ github.repository_owner == 'zondax' && 'zondax-runners' || ' ubuntu-latest' }}
18
18
steps :
19
19
- uses : actions/checkout@v4
20
20
with :
Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ on: push
3
3
4
4
jobs :
5
5
configure :
6
- runs-on : ubuntu-latest
6
+ runs-on : ${{ github.repository_owner == 'zondax' && 'zondax-runners' || ' ubuntu-latest' }}
7
7
outputs :
8
8
uid_gid : ${{ steps.get-user.outputs.uid_gid }}
9
9
steps :
10
10
- id : get-user
11
11
run : echo "uid_gid=$(id -u):$(id -g)" >> $GITHUB_OUTPUT
12
12
13
13
build :
14
- runs-on : ubuntu-latest
14
+ runs-on : ${{ github.repository_owner == 'zondax' && 'zondax-runners' || ' ubuntu-latest' }}
15
15
steps :
16
16
- name : Checkout
17
17
uses : actions/checkout@v4
22
22
run : make test
23
23
24
24
check_version :
25
- runs-on : ubuntu-latest
25
+ runs-on : ${{ github.repository_owner == 'zondax' && 'zondax-runners' || ' ubuntu-latest' }}
26
26
outputs :
27
27
version : ${{ steps.get-version.outputs.version }}
28
28
exists : ${{ steps.get-version.outputs.exists }}
48
48
run : exit 1
49
49
50
50
tag :
51
- runs-on : ubuntu-latest
51
+ runs-on : ${{ github.repository_owner == 'zondax' && 'zondax-runners' || ' ubuntu-latest' }}
52
52
needs :
53
53
- build
54
54
- check_version
You can’t perform that action at this time.
0 commit comments