mirror of
https://github.com/gcushen/hugo-academic.git
synced 2025-07-26 19:15:16 +02:00
test: add github action
builds test site with latest Hugo version
This commit is contained in:
parent
61e85bbd76
commit
7294158fdf
1 changed files with 26 additions and 0 deletions
26
.github/workflows/build-test-site.yaml
vendored
Normal file
26
.github/workflows/build-test-site.yaml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: build test site
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'wowchemy/**'
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-18.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: 'latest'
|
||||
extended: true
|
||||
|
||||
- name: Build
|
||||
run: hugo --minify
|
Loading…
Add table
Add a link
Reference in a new issue