Skip to content

Commit 30901bd

Browse files
Feat: helm chart repo on gitlab pages (#1566)
* chore: rename helm chart directory to charts * feat: add GitHub workflow for building Helm Charts * fix: update Helm Chart release workflow with write-all permissions * fix: update Helm Chart release workflow with proper trunk branch name * chore: rename Helm release workflow
1 parent 0a5c397 commit 30901bd

27 files changed

+26
-0
lines changed
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:
4+
push:
5+
branches:
6+
- trunk
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
permissions: write-all
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Configure Git
19+
run: |
20+
git config user.name "$GITHUB_ACTOR"
21+
git config user.email "[email protected]"
22+
23+
- name: Run chart-releaser
24+
uses: helm/[email protected]
25+
env:
26+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
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)