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.
2 parents cb58d4d + 614ac72 commit 7ec88fcCopy full SHA for 7ec88fc
.github/workflows/release_charts.yaml
@@ -0,0 +1,28 @@
1
+name: Release Charts
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v3
14
+ with:
15
+ fetch-depth: 0
16
17
+ - name: Configure Git
18
+ run: |
19
+ git config user.name "$GITHUB_ACTOR"
20
+ git config user.email "[email protected]"
21
22
+ - name: Install Helm
23
+ uses: azure/setup-helm@v3
24
25
+ - name: Run chart-releaser
26
+ uses: helm/[email protected]
27
+ env:
28
+ CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments