Skip to content

Commit

Permalink
Fix workflow names
Browse files Browse the repository at this point in the history
  • Loading branch information
sd109 committed Nov 2, 2024
1 parent 7c9988b commit e933392
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-push-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
publish_images:
uses: ./.github/workflows/build-push-images.yml
with:
ref: ${{ inputs.ref || github.ref }}
ref: ${{ github.ref }}
secrets: inherit

publish_charts:
uses: ./.github/workflows/build-push-charts.yml
with:
ref: ${{ inputs.ref || github.ref }}
ref: ${{ github.ref }}
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/build-push-charts.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Adapted from https://github.com/stackhpc/azimuth/blob/master/.github/workflows/build-push-artifacts.yaml
name: Publish artifacts
name: Publish Helm charts

on:
workflow_call:
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Check out the repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.ref }}
ref: ${{ inputs.ref }}
# This is important for the semver action to work correctly
# when determining the number of commits since the last tag
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-push-images.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Adapted from https://github.com/stackhpc/azimuth/blob/master/.github/workflows/build-push-artifacts.yaml
name: Publish artifacts
name: Publish container images

on:
workflow_call:
Expand Down Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Check out the repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.ref }}
ref: ${{ inputs.ref }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
Expand Down

0 comments on commit e933392

Please sign in to comment.