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