2022-12-03 18:12:04 +00:00
|
|
|
name: Release Charts
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2023-05-25 11:51:33 +00:00
|
|
|
paths:
|
|
|
|
- 'charts/**'
|
2022-12-03 18:12:04 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release-charts:
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Configure Git
|
|
|
|
run: |
|
|
|
|
git config user.name "$GITHUB_ACTOR"
|
|
|
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
|
|
|
|
|
|
- name: Install Helm
|
|
|
|
uses: azure/setup-helm@v3
|
|
|
|
with:
|
2023-05-25 11:51:33 +00:00
|
|
|
version: v3.12.0
|
2022-12-03 18:12:04 +00:00
|
|
|
|
|
|
|
- name: Run chart-releaser
|
2023-05-25 11:51:33 +00:00
|
|
|
uses: helm/chart-releaser-action@v1.5.0
|
2022-12-03 18:12:04 +00:00
|
|
|
env:
|
|
|
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|