Skip to content

Merge pull request #23 from onyx-dot-app/bump-0.3.2 #15

Merge pull request #23 from onyx-dot-app/bump-0.3.2

Merge pull request #23 from onyx-dot-app/bump-0.3.2 #15

Workflow file for this run

name: Release Helm Chart
on:
push:
branches: [main]
paths:
- 'kubernetes/**'
- '.github/workflows/helm-release.yml'
workflow_dispatch:
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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v4
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
charts_dir: kubernetes
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"