-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 868 Bytes
/
main.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
name: Rendering
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.111.3"
- name: Build
run: hugo --minify -d ./docs
- name: setup git config
run: |
git config user.name "GitHub Actions (by ${GITHUB_ACTOR})"
git config user.email ""
- name: Commit
run: |
if [[ `git status --porcelain` ]]; then
git add ./docs
git commit -m "$GITHUB_WORKFLOW on $GITHUB_EVENT_NAME" -m "SHA: $GITHUB_SHA"
git push origin main
fi