We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e997c61 commit e02f98cCopy full SHA for e02f98c
2 files changed
.github/workflows/publish.yaml
@@ -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
@@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Kubernetes
name: basic
-version: 0.0.1
+version: 0.0.2
0 commit comments