Skip to content

Commit

Permalink
Merge pull request #117 from rosmo/helm-chart
Browse files Browse the repository at this point in the history
Add Helm chart publisher
  • Loading branch information
rosmo authored Mar 18, 2024
2 parents c81fb44 + 2ea2798 commit 2f27c04
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/helm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: |
Publish Helm chart
on:
workflow_dispatch: {}
push:
branches:
- master
tags:
- v*

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "Helm Chart Automation"
git config user.email "rosmo@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: deploy/chart
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 2f27c04

Please sign in to comment.