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 05471d3 commit 3dbff57Copy full SHA for 3dbff57
.github/workflows/helm-chart.yml
@@ -0,0 +1,26 @@
1
+name: Helm Chart CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
7
+jobs:
8
+ release:
9
+ permissions:
10
+ contents: write
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
18
+ - name: Configure Git
19
+ run: |
20
+ git config user.name "$GITHUB_ACTOR"
21
+ git config user.email "[email protected]"
22
23
+ - name: Run chart-releaser
24
+ uses: helm/[email protected]
25
+ env:
26
+ CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments