From 85b9c4c322100ca876eadbfaf820ecb711a420ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douglas=20Gad=C3=AAlha?= Date: Wed, 29 Nov 2023 12:47:17 -0300 Subject: [PATCH] fix: multi-file push MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Douglas Gadêlha --- .github/workflows/helm.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index a623a11..1a5b87b 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -61,4 +61,6 @@ jobs: - name: Publish chart 🚀 run: | - helm push *.tgz oci://ghcr.io/cubos/charts + for f in *.tgz; do + helm push $f oci://ghcr.io/cubos/charts + done