We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140adcd commit cbced0fCopy full SHA for cbced0f
.github/workflows/helm_release.yml
@@ -0,0 +1,34 @@
1
+name: Release Charts
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - dev
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ release:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v3
17
+ with:
18
+ fetch-depth: 0
19
20
+ - name: Configure Git
21
+ run: |
22
+ git config user.name "$GITHUB_ACTOR"
23
+ git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
24
25
+ - name: Install Helm
26
+ uses: azure/setup-helm@v3
27
28
+ - name: Run chart-releaser
29
+ uses: helm/chart-releaser-action@v1.6.0
30
31
+ charts_dir: .
32
+ pages_branch: dev
33
+ env:
34
+ CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments