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:
1313 publish_images :
1414 uses : ./.github/workflows/build-push-images.yml
1515 with :
16- ref : ${{ inputs.ref || github.ref }}
16+ ref : ${{ github.ref }}
1717 secrets : inherit
1818
1919 publish_charts :
2020 uses : ./.github/workflows/build-push-charts.yml
2121 with :
22- ref : ${{ inputs.ref || github.ref }}
22+ ref : ${{ github.ref }}
2323 secrets : inherit
Original file line number Diff line number Diff line change 11# Adapted from https://github.com/stackhpc/azimuth/blob/master/.github/workflows/build-push-artifacts.yaml
2- name : Publish artifacts
2+ name : Publish Helm charts
33
44on :
55 workflow_call :
2424 - name : Check out the repository
2525 uses : actions/checkout@v4
2626 with :
27- ref : ${{ inputs.ref || github.ref }}
27+ ref : ${{ inputs.ref }}
2828 # This is important for the semver action to work correctly
2929 # when determining the number of commits since the last tag
3030 fetch-depth : 0
Original file line number Diff line number Diff line change 11# Adapted from https://github.com/stackhpc/azimuth/blob/master/.github/workflows/build-push-artifacts.yaml
2- name : Publish artifacts
2+ name : Publish container images
33
44on :
55 workflow_call :
2727 - name : Check out the repository
2828 uses : actions/checkout@v4
2929 with :
30- ref : ${{ inputs.ref || github.ref }}
30+ ref : ${{ inputs.ref }}
3131
3232 - name : Login to GitHub Container Registry
3333 uses : docker/login-action@v3
You can’t perform that action at this time.
0 commit comments