Skip to content

Commit e933392

Browse files
committed
Fix workflow names
1 parent 7c9988b commit e933392

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-push-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/build-push-charts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

44
on:
55
workflow_call:
@@ -24,7 +24,7 @@ jobs:
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

.github/workflows/build-push-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

44
on:
55
workflow_call:
@@ -27,7 +27,7 @@ jobs:
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

0 commit comments

Comments
 (0)