Skip to content

Commit acff560

Browse files
authored
Actions: auto-release helm chart (#56)
1 parent 696948f commit acff560

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v1
13+
14+
- name: Configure Git
15+
run: |
16+
git config user.name "$GITHUB_ACTOR"
17+
git config user.email "[email protected]"
18+
19+
- name: Run chart-releaser
20+
uses: helm/[email protected]
21+
env:
22+
CR_TOKEN: "${{ secrets.CR_TOKEN }}"

0 commit comments

Comments
 (0)