File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -24,17 +24,18 @@ jobs:
24
24
runs-on : ubuntu-latest
25
25
steps :
26
26
- name : PR must be from a branch in the stackhpc/azimuth-llm repo
27
- run : exit ${{ github.event.pull_request.head.repo.full_name == 'stackhpc/azimuth-llm' && '0' || '1' }}
27
+ run : |
28
+ exit ${{ github.event.pull_request.head.repo.full_name == 'stackhpc/azimuth-llm' && '0' || '1' }}
28
29
29
- publish_artifacts :
30
+ publish_images :
30
31
needs : [fail_on_remote]
31
- uses : ./.github/workflows/build-push-artifacts .yml
32
+ uses : ./.github/workflows/build-push-images .yml
32
33
with :
33
34
ref : ${{ github.event.pull_request.head.sha }}
34
35
secrets : inherit
35
36
36
37
chart_validation :
37
- needs : [publish_artifacts ]
38
+ needs : [publish_images ]
38
39
runs-on : ubuntu-latest
39
40
env :
40
41
CLUSTER_NAME : chart-testing
74
75
- name : Run chart install and test
75
76
run : ct install --config ct.yaml
76
77
78
+ publish_charts :
79
+ needs : [chart_validation]
80
+ uses : ./.github/workflows/build-push-charts.yml
81
+ with :
82
+ ref : ${{ github.event.pull_request.head.sha }}
83
+ secrets : inherit
You can’t perform that action at this time.
0 commit comments