File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
13
13
publish_images :
14
14
uses : ./.github/workflows/build-push-images.yml
15
15
with :
16
- ref : ${{ inputs.ref || github.ref }}
16
+ ref : ${{ github.ref }}
17
17
secrets : inherit
18
18
19
19
publish_charts :
20
20
uses : ./.github/workflows/build-push-charts.yml
21
21
with :
22
- ref : ${{ inputs.ref || github.ref }}
22
+ ref : ${{ github.ref }}
23
23
secrets : inherit
Original file line number Diff line number Diff line change 1
1
# Adapted from https://github.com/stackhpc/azimuth/blob/master/.github/workflows/build-push-artifacts.yaml
2
- name : Publish artifacts
2
+ name : Publish Helm charts
3
3
4
4
on :
5
5
workflow_call :
24
24
- name : Check out the repository
25
25
uses : actions/checkout@v4
26
26
with :
27
- ref : ${{ inputs.ref || github.ref }}
27
+ ref : ${{ inputs.ref }}
28
28
# This is important for the semver action to work correctly
29
29
# when determining the number of commits since the last tag
30
30
fetch-depth : 0
Original file line number Diff line number Diff line change 1
1
# Adapted from https://github.com/stackhpc/azimuth/blob/master/.github/workflows/build-push-artifacts.yaml
2
- name : Publish artifacts
2
+ name : Publish container images
3
3
4
4
on :
5
5
workflow_call :
27
27
- name : Check out the repository
28
28
uses : actions/checkout@v4
29
29
with :
30
- ref : ${{ inputs.ref || github.ref }}
30
+ ref : ${{ inputs.ref }}
31
31
32
32
- name : Login to GitHub Container Registry
33
33
uses : docker/login-action@v3
You can’t perform that action at this time.
0 commit comments