mirror of
https://github.com/Wonderfall/hugo-WonderMod.git
synced 2024-11-22 18:41:37 +01:00
Create gh-pages.yml
This commit is contained in:
parent
28aa04ddb6
commit
b67cd19392
30
.github/workflows/gh-pages.yml
vendored
Normal file
30
.github/workflows/gh-pages.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
name: Build GH-Pages
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Git checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
ref: exampleSite
|
||||||
|
|
||||||
|
- name: Update theme
|
||||||
|
run: git submodule update --init --recursive
|
||||||
|
|
||||||
|
- name: Setup hugo
|
||||||
|
uses: peaceiris/actions-hugo@v2
|
||||||
|
with:
|
||||||
|
hugo-version: 'latest'
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: hugo --gc --verbose --minify
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.TOKEN }}
|
||||||
|
publish_dir: ./public
|
Loading…
Reference in New Issue
Block a user