Skip to content

Commit

Permalink
Add release helm charts workflow (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
GezimSejdiu authored Apr 11, 2022
1 parent aca1de7 commit 7392f29
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release-helm-charts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release Charts

on:
push:
branches:
- master

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Fetch history
run: git fetch --prune --unshallow

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.7.2

- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: helm-chart
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 7392f29

Please sign in to comment.