File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 37
37
build :
38
38
needs : test
39
39
name : Build & Push to container registries
40
- runs-on : ubuntu-latest
40
+ runs-on : ubuntu-24.04-arm
41
41
steps :
42
42
- uses : actions/checkout@v4
43
43
@@ -119,7 +119,7 @@ jobs:
119
119
needs : build
120
120
if : startsWith(github.event.ref, 'refs/tags/v')
121
121
name : Notify release
122
- runs-on : ubuntu-latest
122
+ runs-on : ubuntu-24.04-arm
123
123
steps :
124
124
- name : Notify release
125
125
run : |
@@ -129,7 +129,7 @@ jobs:
129
129
needs : build
130
130
if : github.ref == 'refs/heads/develop'
131
131
name : Deploy to ECS API Egov
132
- runs-on : ubuntu-latest
132
+ runs-on : ubuntu-24.04-arm
133
133
environment :
134
134
name : Staging-egov
135
135
url : https://careapi.ohc.network
Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ jobs:
17
17
build-docs :
18
18
if : github.repository == 'ohcnetwork/care'
19
19
name : Build docs
20
- runs-on : ubuntu-latest
20
+ runs-on : ubuntu-24.04-arm
21
21
steps :
22
22
- uses : actions/checkout@v4
23
23
24
24
- uses : actions/setup-python@v5
25
25
with :
26
26
python-version : " 3.13"
27
- cache : ' pipenv'
27
+ cache : " pipenv"
28
28
29
29
- name : Install pipenv
30
30
run : pip install pipenv
46
46
deploy-docs :
47
47
if : github.repository == 'ohcnetwork/care' && github.ref == 'refs/heads/develop'
48
48
name : Deploy docs
49
- runs-on : ubuntu-latest
49
+ runs-on : ubuntu-24.04-arm
50
50
needs : build-docs
51
51
permissions :
52
52
contents : write
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
issue_opened_and_reopened :
10
10
name : issue_opened_and_reopened
11
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-24.04-arm
12
12
if : github.repository == 'ohcnetwork/care' && github.event_name == 'issues' && github.event.action == 'opened' || github.event.action == 'reopened'
13
13
steps :
14
14
- name : ' Move issue to "Triage"'
21
21
status_value : " Triage"
22
22
issue_closed :
23
23
name : issue_closed
24
- runs-on : ubuntu-latest
24
+ runs-on : ubuntu-24.04-arm
25
25
if : github.repository == 'ohcnetwork/care' && github.event_name == 'issues' && github.event.action == 'closed'
26
26
steps :
27
27
- name : ' Moved issue to "Done"'
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
lint :
12
- runs-on : ubuntu-latest
12
+ runs-on : ubuntu-24.04-arm
13
13
steps :
14
14
- uses : actions/checkout@v4
15
15
with :
Original file line number Diff line number Diff line change 13
13
14
14
jobs :
15
15
test :
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-24.04-arm
17
17
steps :
18
18
- uses : actions/checkout@v4
19
19
You can’t perform that action at this time.
0 commit comments