Skip to content

Commit 019c41e

Browse files
committed
Add chart-releaser action.
1 parent 72f522d commit 019c41e

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

.github/workflows/release.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Configure Git
18+
run: |
19+
git config user.name "$GITHUB_ACTOR"
20+
git config user.email "[email protected]"
21+
22+
- name: Install Helm
23+
uses: azure/setup-helm@v1
24+
with:
25+
version: v3.8.1
26+
27+
- name: Run chart-releaser (signadot-plugins)
28+
uses: helm/[email protected]
29+
with:
30+
charts_dir: signadot-plugins
31+
charts_repo_url: https://plugins.signadot.com
32+
env:
33+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
34+
35+
- name: Run chart-releaser (signadot-plugins-exp)
36+
uses: helm/[email protected]
37+
with:
38+
config: signadot-plugins-exp/chart-releaser.yaml
39+
charts_dir: signadot-plugins-exp
40+
charts_repo_url: https://plugins.signadot.com/exp
41+
env:
42+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pages-index-path: exp/index.yaml

0 commit comments

Comments
 (0)