hugo-PaperMod/.github/workflows/gh-pages.yml

48 lines
1.0 KiB
YAML
Raw Normal View History

2020-07-21 20:08:28 +02:00
name: Build GH-Pages
on:
push:
2020-09-24 08:48:18 +02:00
paths-ignore:
- "images/**"
- "LICENSE"
- "README.md"
branches:
- master
- exampleSite
2020-07-21 20:08:28 +02:00
workflow_dispatch:
# manual run
inputs:
hugoVersion:
description: "Hugo Version"
required: false
default: "0.83.0"
2020-07-21 20:08:28 +02:00
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: "${{ github.event.inputs.hugoVersion }}"
2020-07-21 20:08:28 +02:00
- 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