Skip to content

ci: update helm/kind-action action to v1.11.0 (#799) #557

ci: update helm/kind-action action to v1.11.0 (#799)

ci: update helm/kind-action action to v1.11.0 (#799) #557

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6.2.0
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
- name: Export GPG key to legacy format
run: gpg --export-secret-keys > ~/.gnupg/pubring.gpg
- name: Set up Helm
uses: azure/setup-helm@v3.5
with:
version: v3.12.3 # renovate: helm
- name: Add dependency chart repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami/
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
config: cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"