-
Notifications
You must be signed in to change notification settings - Fork 5
109 lines (91 loc) · 2.94 KB
/
gh-pages.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
name: publish
on:
push:
branches:
- 'main'
repository_dispatch:
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
env:
GH_BOT_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
GH_BOT_NAME: "GitHub Action"
HUGO_VERSION: 0.120.4
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
main-root:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.repository == 'commonhaus/commonhaus.github.io'
steps:
- id: is-main-root
run: echo "This is the main branch of 'commonhaus/commonhaus.github.io'"
build:
runs-on: ubuntu-latest
steps:
- name: Install Hugo CLI
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
- name: Install Dart Sass
run: sudo snap install dart-sass
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Git Sumbodule Update
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name ${{ env.GH_BOT_NAME }}
git config user.email ${{ env.GH_BOT_EMAIL }}
git pull --recurse-submodules
git submodule update --init --remote --recursive
if git diff --quiet; then
echo "-- No changes -- "
else
git commit -am "🆙 Auto-update submodule references" && git push
fi
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.5'
cache-dependency-path: 'site/package-lock.json'
cache: 'npm'
- name: NPM Install
working-directory: ./site
run: npm ci
- name: Build with Hugo
env:
HUGO_ENVIRONMENT: production
HUGO_ENV: production
working-directory: ./site
run: hugo --minify
- name: Fix permissions
run: |
chmod -c -R +rX "./public" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./public
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: [main-root, build]
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2