Skip to content

ci: update dependency python to v3.12.1 (#580) #49

ci: update dependency python to v3.12.1 (#580)

ci: update dependency python to v3.12.1 (#580) #49

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Import GPG key
uses: crazy-max/[email protected]
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/[email protected]
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/[email protected]
with:
config: cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"