Skip to content

✨(grocy): new chart #94

✨(grocy): new chart

✨(grocy): new chart #94

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
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
- name: Release app charts
uses: helm/[email protected]
with:
charts_dir: charts/apps
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_PAGES_INDEX_PATH: charts/apps/index.yaml
- name: Release system charts
uses: helm/[email protected]
with:
charts_dir: charts/system
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_PAGES_INDEX_PATH: charts/system/index.yaml
- name: Release config charts
uses: helm/[email protected]
with:
charts_dir: charts/config
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_PAGES_INDEX_PATH: charts/config/index.yaml