From 32905116a8aa3cc0a79ff2ef641274b21d00096d Mon Sep 17 00:00:00 2001 From: Cezar Guimaraes Date: Thu, 5 Oct 2023 10:48:33 -0300 Subject: [PATCH] wip --- .github/workflows/publish.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 4b4bf5f..5bf398b 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -24,9 +24,11 @@ jobs: registry-type: public - run: | make helm VERSION=manager-${{ github.ref_name }} - curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash + # latest v3.13.0 helm is bugged https://github.com/helm/helm/issues/12423 + curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash -s -- --version v3.12.3 helm package ./cleaner-controller --app-version ${{ github.ref_name }} --version ${{ github.ref_name }} - helm push ./cleaner-controller-${{ github.ref_name }}.tgz oci://public.ecr.aws/f8y0w2c4 + helm package ./cleaner-controller --app-version v0.0.0 --version v0.0.0 + helm push ./cleaner-controller-v0.0.0.tgz oci://public.ecr.aws/f8y0w2c4 # - name: Build, tag, and push docker image to Amazon ECR Public # uses: int128/kaniko-action@v1