Skip to content

Commit

Permalink
Case Sentivity breaking publish.
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Layfield <aaron.layfield@gmail.com>
  • Loading branch information
DandyDeveloper committed Feb 25, 2025
1 parent 782f69b commit 61c8440
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ master ]

jobs:
prepare:
release:
runs-on: ubuntu-latest

permissions:
Expand Down Expand Up @@ -52,12 +52,12 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.CR_TOKEN }}

- name: Push charts to GHCR
- name: Push charts to GHCR # Can't use variables in the push due to case sensitivty.
run: |
shopt -s nullglob
for pkg in .cr-release-packages/*; do
if [ -z "${pkg:-}" ]; then
break
fi
helm push "${pkg}" "oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/charts"
helm push "${pkg}" "oci://ghcr.io/dandydeveloper/charts"
done

0 comments on commit 61c8440

Please sign in to comment.