Skip to content

Commit ab3a453

Browse files
authored
chore: add helm chart releaser action (#65)
1 parent 53bc3d0 commit ab3a453

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release:
10+
permissions:
11+
contents: write
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Configure Git
20+
run: |
21+
git config user.name "$GITHUB_ACTOR"
22+
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
23+
24+
- name: Run chart-releaser
25+
uses: helm/chart-releaser-action@v1.7.0
26+
env:
27+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
28+
with:
29+
charts_dir: helm

0 commit comments

Comments
 (0)