Skip to content

fix: 0.3.2 version (#9) #6

fix: 0.3.2 version (#9)

fix: 0.3.2 version (#9) #6

name: Release Charts
on: # yamllint disable-line rule:truthy
push:
branches:
- main
jobs:
release:
# depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.11.1
- name: Add missing repositories
# On second thought, let's add the repo manually
# https://github.com/helm/helm/issues/9903#issue-935152749
# https://github.com/helm/helm/issues/8036#issuecomment-1126959239
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: .
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"