Skip to content

Commit 3460fd3

Browse files
authored
ci: fix package pattern in helm chart release workflow
This was pointed out in https://github.com/kubernetes-sigs/headlamp/pull/3024/files#r2318193831 Signed-off-by: Devin Buhl <onedr0p@users.noreply.github.com>
1 parent dff0ea0 commit 3460fd3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/helm-chart-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,9 @@ jobs:
7979

8080
- name: Push Charts to GHCR
8181
run: |
82-
for pkg in .cr-release-packages/*; do
82+
for pkg in .cr-release-packages/*.tgz; do
8383
if [ -z "${pkg:-}" ]; then
8484
break
8585
fi
86-
8786
helm push "${pkg}" oci://ghcr.io/${{ github.repository }}/charts
8887
done

0 commit comments

Comments
 (0)