-
Notifications
You must be signed in to change notification settings - Fork 4
70 lines (68 loc) · 1.82 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Release Charts
on:
workflow_dispatch:
push:
branches:
- master
jobs:
release:
name: Release charts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Add charts repo
run: helm repo add charts https://charts.bitnami.com/bitnami
- name: fetch all dependencies
run: |
bash -c 'for dir in charts/*; do helm dependency build "$dir"; done'
- name: Run chart-releaser
uses: helm/[email protected]
continue-on-error: true
with:
charts_dir: charts
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
docs:
needs: release
name: Build documentation
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
env:
NUXT_APP_BASE_URL: /charts/
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Installing project dependencies
run: yarn install
- name: Build site
run: yarn generate
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: frontend/.output/public
target-folder: docs
clean-exclude: |-
.nojekyll
copy:
needs: docs
name: Copy index.yaml
runs-on: ubuntu-latest
steps:
- name: Checkout gh-pages branch
uses: actions/checkout@v3
with:
ref: gh-pages
- name: Copy index.yaml
run: cp index.yaml docs/index.yaml
- uses: stefanzweifel/git-auto-commit-action@v4