forked from mirrors/hugo-tufte
Added build CI
This commit is contained in:
parent
4ccd5c9bda
commit
b2abcdaebe
2 changed files with 32 additions and 1 deletions
31
.github/workflows/build-site.yml
vendored
Normal file
31
.github/workflows/build-site.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
name: build github pages
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master # Set a branch to deploy
|
||||||
|
|
||||||
|
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: '0.83.1'
|
||||||
|
extended: true
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: hugo --minify
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
if: github.ref == 'refs/heads/master'
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GH_TOKEN }}
|
||||||
|
publish_dir: ./public
|
|
@ -5,7 +5,7 @@ description = "A minimalist blog theme using Tufte-css."
|
||||||
homepage = "http://github.com/shawnohare/hugo-tufte"
|
homepage = "http://github.com/shawnohare/hugo-tufte"
|
||||||
tags = ["blog", "tufte", "minimal"]
|
tags = ["blog", "tufte", "minimal"]
|
||||||
features = ["math", "tufte-css", "tufte"]
|
features = ["math", "tufte-css", "tufte"]
|
||||||
min_version = 0.85
|
min_version = 0.84
|
||||||
|
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Shawn O'Hare", homepage = "http://www.shawnohare.com"},
|
{name = "Shawn O'Hare", homepage = "http://www.shawnohare.com"},
|
||||||
|
|
Loading…
Reference in a new issue