Skip to content

Merge pull request #6 from cloud-pi-native/feat/add-ns-chart #2

Merge pull request #6 from cloud-pi-native/feat/add-ns-chart

Merge pull request #6 from cloud-pi-native/feat/add-ns-chart #2

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths:
- 'charts/**'
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: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.13.0
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: charts
config: .github/cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"