Skip to content

Commit 5361774

Browse files
committed
Add workflow to release chart
1 parent 9da86e1 commit 5361774

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/release-chart.yaml

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

0 commit comments

Comments
 (0)