-
Notifications
You must be signed in to change notification settings - Fork 1
86 lines (69 loc) · 2.07 KB
/
gh-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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# https://gohugo.io/hosting-and-deployment/hosting-on-github/
name: Build and deploy GitHub pages
on:
push:
paths:
- 'docs/**'
- '.github/workflows/gh-pages.yml'
branches:
- main # Set a branch to deploy
pull_request:
# Enable manual workflow triggering from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
# Set the documentation root
documentation_root: './docs'
jobs:
build:
permissions:
contents: read
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ${{ env.documentation_root }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
lfs: 'true'
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: '${{ env.documentation_root }}/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Setup Hugo
uses: peaceiris/[email protected]
with:
hugo-version: 0.123.8
extended: true
- name: Build
run: hugo --minify
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ${{ env.documentation_root }}/public
deploy:
defaults:
run:
working-directory: ${{ env.documentation_root }}
if: github.ref == 'refs/heads/main'
# Add a dependency to the build job
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1