chore(misc-apps): Bumped keda version (#1595) #1240
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release Charts | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup environment for release | |
| run: hack/ci/github/setup/release.sh | |
| - name: Configure Git | |
| run: | | |
| git config user.name "$GITHUB_ACTOR" | |
| git config user.email "[email protected]" | |
| - name: Install Helm | |
| uses: azure/setup-helm@v4 | |
| with: | |
| version: v3.14.0 | |
| - name: Add dependency chart repos | |
| run: yq e '."chart-repos"[]' hack/chart-testing/ct.yaml | tr "=" " " | xargs -L1 helm repo add | |
| - name: Run chart-releaser | |
| uses: helm/[email protected] | |
| with: | |
| # Allow us to re-run the release action | |
| skip_existing: true | |
| env: | |
| CR_TOKEN: "${{ secrets.CR_TOKEN }}" | |
| - name: Run gomplate to update pages index | |
| run: hack/ci/github/steps/update-page.sh | |
| env: | |
| CR_TOKEN: "${{ secrets.CR_TOKEN }}" |