Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Feature/bump helm chart (#231) #242

Feature/bump helm chart (#231)

Feature/bump helm chart (#231) #242

Workflow file for this run

name: Release - Helm
on:
push:
branches:
- "main"
paths-ignore:
- '**.md'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
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/[email protected]
with:
version: v3.4.0
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: deploy/helm
config: .cr.yaml
env:
CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
CR_RELEASE_NAME_TEMPLATE: 'meeting-chart-v{{ .Version }}'
CR_SKIP_EXISTING: true