2020-07-21 20:08:28 +02:00
|
|
|
name: Build GH-Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Git checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: exampleSite
|
2020-07-25 08:37:01 +02:00
|
|
|
|
2020-07-22 23:55:32 +02:00
|
|
|
- name: Get Theme
|
|
|
|
run: git submodule update --init --recursive
|
2020-07-25 08:37:01 +02:00
|
|
|
|
2020-07-22 23:55:32 +02:00
|
|
|
- name: Update theme to Latest commit
|
2020-07-22 23:48:45 +02:00
|
|
|
run: git submodule update --remote --merge
|
2020-07-21 20:08:28 +02:00
|
|
|
|
|
|
|
- name: Setup hugo
|
|
|
|
uses: peaceiris/actions-hugo@v2
|
|
|
|
with:
|
|
|
|
hugo-version: 'latest'
|
|
|
|
|
|
|
|
- name: Build
|
2020-07-25 08:37:01 +02:00
|
|
|
run: hugo --buildDrafts --gc --verbose --minify
|
2020-07-21 20:08:28 +02:00
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.TOKEN }}
|
|
|
|
publish_dir: ./public
|