Skip to content

Merge branch 'develop' #12

Merge branch 'develop'

Merge branch 'develop' #12

# based on: https://github.com/helm/charts-repo-actions-demo/blob/main/.github/workflows/release.yaml
name: release charts
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.13.0
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: charts
config: .github/config/chart-release.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"