-
Notifications
You must be signed in to change notification settings - Fork 14
69 lines (67 loc) · 2.19 KB
/
publish-pages.yaml
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
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: Publish Documentation
# Controls when the action will run. Triggers the workflow on push or pull
# request events but only for the main branch
on:
push:
branches: [ main ]
paths:
- 'website/**'
- 'chart/values.yaml'
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in
# parallel
jobs:
build:
name: Publish Helm Chart Docs
# The type of runner that the job will run on
#runs-on: [self-hosted,Linux,X64]
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: recursive
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.91.2'
extended: true
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Setup Golang
uses: actions/setup-go@v2
with:
go-version: '1.17'
# check-latest: true # use stable
- name: Install HelmDocs
run: |
GO111MODULE=on go install github.com/norwoodj/helm-docs/cmd/helm-docs@latest
- name: Generate helm chart values description
run: |
mkdir -p website/includes
cd chart
helm-docs --template-files=tmpl_web.gotmpl --output-file=chart-values-description.md
mv chart-values-description.md ../website/includes/.
- name: Update Node dependencies
run: |
cd website
npm install postcss-cli
npm ci
- name: Build GH pages
run: |
git submodule update --init --recursive
cd website
hugo --minify --templateMetricsHints
- name: Deploy GH pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.TOKEN }}
publish_dir: ./website/public
publish_branch: gh-pages
keep_files: true