-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (37 loc) · 1.01 KB
/
build-and-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
name: Build and deploy
on:
push:
branches:
- main
# Allows to run this workflow manually from the Actions tab.
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
name: Build & deploy to GitHub Pages
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
# TODO: Use matrix and also test with min version?
hugo-version: "latest"
- name: Build website
run: hugo --gc --minify --source exampleSite --baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./exampleSite/public/