Skip to content

Commit

Permalink
[CI] bump publish workflows (#1039)
Browse files Browse the repository at this point in the history
  • Loading branch information
liranbg authored Oct 7, 2024
1 parent c62be2f commit 7932298
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ 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:
publish-chart:
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: |
Expand All @@ -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

0 comments on commit 7932298

Please sign in to comment.