-
Notifications
You must be signed in to change notification settings - Fork 107
117 lines (110 loc) · 4.46 KB
/
site-production-build-deploy.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
######################################################################
# Build & deploy (if on `main`) the site to GitHub pages.
# Notes:
# - Images & CSS generated by Hugo's build processing are cached
# between runs (located in ./resources)
# - Caches auto-expire at the first workflow run each month
######################################################################
name: Production build and deploy
defaults:
run:
shell: bash
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
# sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
env:
HUGO_VERSION: 0.104.3
jobs:
######################################################################
# build site
######################################################################
build:
name: Build Hugo site
runs-on: ubuntu-latest
steps:
######################################################################
# Setup GH Pages (primarily to get settings for Hugo build)
######################################################################
- name: ⚙️ Setup (& acquire) GitHub Pages config
id: gh_pages
if: github.repository == 'pnp/blog'
uses: actions/configure-pages@v2
######################################################################
# download & install hugo
######################################################################
- name: ⬇️⚙️ Download & install Hugo CLI (extended)
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
env:
HUGO_VERSION: ${{ env.HUGO_VERSION }}
######################################################################
# checkout codebase
######################################################################
- name: Checkout repo codebase
uses: actions/checkout@v3
with:
fetch-depth: 1
clean: true
submodules: recursive
######################################################################
# restore cached Hugo CSS & image processing results
######################################################################
- name: 🔖 Generate cachekey for Hugo generated resources
id: hugo_cache_key
run: echo "VALUE=hugo-resources-$(date +'%Y%m')" >> $GITHUB_OUTPUT
- name: ♻️ Restore cached Hugo resources (generated images, styles, etc)
uses: actions/cache@v3
with:
path: resources
key: ${{ steps.hugo_cache_key.outputs.VALUE }}
######################################################################
# build site using Hugo CLI
######################################################################
- name: 🏗 Build site with Hugo CLI
run: hugo --baseUrl "${SITE_BASE_URL}" --minify
env:
HUGO_ENVIRONMENT: production
HUGO_ENV: production
SITE_BASE_URL: "${{ steps.gh_pages.outputs.base_url }}/"
######################################################################
# save built site artifacts for deployment to GitHub pages
######################################################################
- name: 💾 Save site generated artifacts for deployment
uses: actions/upload-pages-artifact@v1
if: (github.ref == 'refs/heads/main') && github.repository == 'pnp/blog'
with:
path: ./public
######################################################################
# deploy site
######################################################################
deploy:
name: Deploy site Hugo site
if: (github.ref == 'refs/heads/main') && github.repository == 'pnp/blog'
runs-on: ubuntu-latest
needs:
- build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
######################################################################
# deploy Hugo site > GitHub Pages
######################################################################
- name: 🚀 Deploy build to site
id: deployment
uses: actions/deploy-pages@v1