diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 83b1b8c7..da008f2a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: chart_name: - description: 'The chart to publish (use * to publish all charts)' + description: "The chart to publish (use * to publish all charts)" required: true jobs: @@ -12,11 +12,11 @@ jobs: name: Publish ${{ github.event.inputs.chart_name }} runs-on: ubuntu-latest steps: - - uses: azure/setup-helm@v1 + - uses: azure/setup-helm@v4 with: - version: "v3.9.1" + version: "v3.13.3" - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Configure Git Author as Workflow Actor run: | @@ -33,9 +33,9 @@ jobs: export CHART_NAME=${{ github.event.inputs.chart_name }} export PUBLISH_CREDS=${{ github.actor }}:${{ github.token }} make helm-publish-stable-specific-v2 - + - name: Build All Helm Chart & Push to Github Pages if: github.event.inputs.chart_name == '*' run: | export PUBLISH_CREDS=${{ github.actor }}:${{ github.token }} - make helm-publish-all + make helm-publish-all