Skip to content

reorganize helm charts for chart-releaser GH action #5

reorganize helm charts for chart-releaser GH action

reorganize helm charts for chart-releaser GH action #5

Workflow file for this run

name: Helm
on:
push:
branches:
- "main"
paths:
- "charts/**"
workflow_dispatch:
jobs:
helm-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
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@v4
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Add Helm repo dependencies
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run chart-releaser for all applications
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
charts_dir: charts