Skip to content

Commit e02f98c

Browse files
committed
Add GH action
1 parent e997c61 commit e02f98c

2 files changed

Lines changed: 24 additions & 1 deletion

File tree

.github/workflows/publish.yaml

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+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v1
14+
15+
- name: Configure Git
16+
run: |
17+
git config user.name "$GITHUB_ACTOR"
18+
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
19+
20+
- name: Run chart-releaser
21+
uses: helm/chart-releaser-action@v1.0.0-rc.1
22+
env:
23+
CR_TOKEN: "${{ secrets.CR_TOKEN }}"

charts/basic/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for Kubernetes
44
name: basic
5-
version: 0.0.1
5+
version: 0.0.2

0 commit comments

Comments
 (0)