-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (44 loc) · 1.39 KB
/
build.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
name: CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
name: Checkout src repo
with:
path: src
fetch-depth: 0
ref: main
submodules: recursive
# Build hugo website with klakegg/[email protected] action
- name: Build website with hugo
working-directory: src
run: |
yes | sudo apt -y install hugo
hugo
# Checkout destination repository
- name: Checkout dest repo
uses: actions/checkout@v2
with:
path: dest
fetch-depth: 0
ref: gh-pages
# Copy the built website files
- name: Copy website built from public folder
working-directory: dest
run: |
rm -rf *
yes | cp -rf ../public/* . # Replace '(output_folder)' with your build output dir
# Commit and push changes
- name: Commit website updates
working-directory: dest
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
git add .
git diff-index --quiet HEAD || git commit -m "Deploy website updates with GitHub Actions: ${GITHUB_SHA}"
git push origin gh-pages