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 0686150 commit 6c3a6b0Copy full SHA for 6c3a6b0
.github/workflows/release.yaml
@@ -0,0 +1,30 @@
1
+name: Release Charts
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ release:
10
+ permissions:
11
+ contents: write
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 "[email protected]"
23
24
+ - name: Run chart-releaser
25
+ uses: helm/[email protected]
26
27
+ skip_existing: true
28
+ packages_with_index: true
29
+ env:
30
+ CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
charts/.gitkeep
0 commit comments