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 7e17395 commit 6c1c7bcCopy full SHA for 6c1c7bc
.github/workflows/charts.yml
@@ -0,0 +1,34 @@
1
+name: Release Charts
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - "charts/**"
9
10
+jobs:
11
+ release:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 0
18
19
+ - name: Configure Git
20
+ run: |
21
+ git config user.name "$GITHUB_ACTOR"
22
+ git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
23
24
+ - name: Install Helm
25
+ uses: azure/setup-helm@v4
26
+ env:
27
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
28
29
+ - name: Run chart-releaser
30
+ uses: helm/chart-releaser-action@v1.6.0
31
32
+ charts_dir: charts
33
34
+ CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments