Skip to content

Commit

Permalink
Setup helm chart releases site (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
addyess authored Feb 7, 2024
1 parent 2c7bb5b commit 7016135
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release_charts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Charts

on:
push:
branches:
- rockcraft
paths:
- "deploy/charts/**"
jobs:
release:
runs-on: ubuntu-22.04
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: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
charts_dir: deploy/charts

0 comments on commit 7016135

Please sign in to comment.