Skip to content

Commit 2edf1a5

Browse files
committed
add release-chart flow
1 parent 7d860a1 commit 2edf1a5

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/release-chart.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Release Helm Charts
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
types: [synchronize, opened, reopened]
10+
branches:
11+
- "main"
12+
- "v*"
13+
14+
jobs:
15+
releaseChart:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
with:
21+
fetch-depth: 0
22+
- name: Configure Git user
23+
run: |
24+
git config user.name "$GITHUB_ACTOR"
25+
git config user.email "[email protected]"
26+
- name: Run chart-releaser job
27+
uses: "helm/[email protected]"
28+
env:
29+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)