Skip to content

feat(infra-apps): Update cert-manager from 1.12.0 to 1.12.2 (#1057) #860

feat(infra-apps): Update cert-manager from 1.12.0 to 1.12.2 (#1057)

feat(infra-apps): Update cert-manager from 1.12.0 to 1.12.2 (#1057) #860

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 }}"