File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Helm 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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
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@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0
26
+ env :
27
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
28
+ with :
29
+ version : v3.14.4
30
+
31
+ - name : Run chart-releaser
32
+ uses : helm/chart-releaser-action@a917fd15b20e8b64b94d9158ad54cd6345335584 # v1.6.0
33
+ env :
34
+ CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
You can’t perform that action at this time.
0 commit comments