Skip to content

Commit a18514c

Browse files
authored
add helm chart release GitHub workflow (#102)
Signed-off-by: Dmitry Shmulevich <[email protected]>
1 parent 7836225 commit a18514c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
env:
26+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)