mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 04:46:58 +01:00
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"
|
||||
tags = ["blog", "tufte", "minimal"]
|
||||
features = ["math", "tufte-css", "tufte"]
|
||||
min_version = 0.85
|
||||
min_version = 0.84
|
||||
|
||||
authors = [
|
||||
{name = "Shawn O'Hare", homepage = "http://www.shawnohare.com"},
|
||||
|
|
Loading…
Reference in a new issue