Skip to content

Commit 68cf8a6

Browse files
authored
Create release-chart.yaml
1 parent 06aae48 commit 68cf8a6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- 'charts/**'
9+
10+
jobs:
11+
release:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v1
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+
- name: Run chart-releaser
21+
uses: helm/chart-releaser-action@master
22+
env:
23+
CR_TOKEN: '${{ secrets.CR_TOKEN }}'

0 commit comments

Comments
 (0)