Skip to content

Commit 45d8394

Browse files
rearrange the file structure & updated readme.md file
1 parent 7b6cf99 commit 45d8394

File tree

13 files changed

+33
-0
lines changed

13 files changed

+33
-0
lines changed

.github/workflows/release.yaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release:
10+
permissions:
11+
contents: write # to push chart release and create a release (helm/chart-releaser-action)
12+
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Configure Git
21+
run: |
22+
git config user.name "$GITHUB_ACTOR"
23+
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
24+
- name: Set up Helm
25+
uses: azure/setup-helm@v3.5
26+
with:
27+
version: v3.9.2
28+
29+
- name: Run chart-releaser
30+
uses: helm/chart-releaser-action@v1.5.0
31+
env:
32+
CR_TOKEN: "${{ secrets.HELM_RELEASE_TOKEN }}"
33+
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)