Skip to content

Update values.yaml

Update values.yaml #38

name: helm lifecycle
on:
push:
branches:
- main
paths-ignore:
- '**/README.md'
- '**/index.yaml'
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: checkout commit
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: git configuration
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: install Helm
uses: azure/setup-helm@v4
with:
version: v3.8.1
- name: build publish to gh pages
uses: helm/[email protected]
with:
charts_dir: charts
config: .github/chart-release-config.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"