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 7d860a1 commit 2edf1a5Copy full SHA for 2edf1a5
1 file changed
.github/workflows/release-chart.yml
@@ -0,0 +1,29 @@
1
+---
2
+name: Release Helm Charts
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+ pull_request:
9
+ types: [synchronize, opened, reopened]
10
11
+ - "main"
12
+ - "v*"
13
14
+jobs:
15
+ releaseChart:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
+ - name: Configure Git user
23
+ run: |
24
+ git config user.name "$GITHUB_ACTOR"
25
+ git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
26
+ - name: Run chart-releaser job
27
+ uses: "helm/chart-releaser-action@v1.7.0"
28
+ env:
29
+ CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments