Skip to content

Commit

Permalink
add chart-release github actions workflow, create index.yaml for chart (
Browse files Browse the repository at this point in the history
  • Loading branch information
FieteO authored Apr 3, 2024
1 parent 30276b9 commit 526c398
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/chart-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# reference: https://helm.sh/docs/howto/chart_releaser_action/#github-actions-workflow
name: Release Charts

on:
push:
branches:
- master

jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
3 changes: 3 additions & 0 deletions chart/index.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
apiVersion: v1
entries: {}
generated: "2024-04-03T17:43:58.307779939+02:00"

0 comments on commit 526c398

Please sign in to comment.