Skip to content

chore(deps): bump helm/kind-action from 1.7.0 to 1.8.0 (#1067) #868

chore(deps): bump helm/kind-action from 1.7.0 to 1.8.0 (#1067)

chore(deps): bump helm/kind-action from 1.7.0 to 1.8.0 (#1067) #868

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
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/[email protected]
with:
version: v3.10.3
- 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]
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 }}"