2022-10-03 14:21:12 +00:00
|
|
|
name: Release Charts
|
|
|
|
|
|
|
|
on:
|
2022-10-03 17:17:16 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-03 14:21:12 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-11-02 10:40:45 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-10-03 14:21:12 +00:00
|
|
|
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:
|
|
|
|
version: v3.10.0
|
|
|
|
|
|
|
|
- name: Run chart-releaser
|
|
|
|
uses: helm/chart-releaser-action@v1.4.1
|
2022-10-03 17:17:16 +00:00
|
|
|
with:
|
|
|
|
charts_dir: charts
|
2022-10-03 14:21:12 +00:00
|
|
|
env:
|
|
|
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|