From 1e0eee6874e35d7c236b1475502d83ca8538db40 Mon Sep 17 00:00:00 2001 From: pbzweihander Date: Mon, 10 Jul 2023 14:38:42 +0900 Subject: [PATCH] Replace Helm action --- .github/workflows/release-chart.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index b3b8580..3828049 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -16,11 +16,12 @@ jobs: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - uses: actions/checkout@v3 - - name: Bulid and push Helm chart to S3 - uses: WyriHaximus/github-action-helm3@v3 + - uses: azure/setup-helm@v3 with: - exec: | - helm plugin install https://github.com/hypnoglow/helm-s3.git - helm repo add devsisters s3://devsisters-public-helm-charts - helm package helm - helm s3 push *.tgz devsisters --relative + version: "3.12.1" + - name: Bulid and push Helm chart to S3 + run: | + helm plugin install https://github.com/hypnoglow/helm-s3.git + helm repo add devsisters s3://devsisters-public-helm-charts + helm package helm + helm s3 push *.tgz devsisters --relative