2021-01-27 19:28:34 +01:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- exampleSite
|
|
|
|
workflow_dispatch:
|
|
|
|
# manual run
|
2022-03-27 16:09:44 +02:00
|
|
|
inputs:
|
|
|
|
hugoVersion:
|
|
|
|
description: "Hugo Version"
|
|
|
|
required: false
|
|
|
|
default: "0.83.0"
|
2021-01-27 19:28:34 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Git checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: exampleSite
|
|
|
|
|
|
|
|
- name: Get Theme
|
|
|
|
run: git submodule update --init --recursive
|
|
|
|
|
|
|
|
- name: Update theme to Latest commit
|
|
|
|
run: git submodule update --remote --merge
|
|
|
|
|
|
|
|
- name: Setup hugo
|
|
|
|
uses: peaceiris/actions-hugo@v2
|
|
|
|
with:
|
2022-03-27 16:09:44 +02:00
|
|
|
hugo-version: "${{ github.event.inputs.hugoVersion }}"
|
2021-01-27 19:28:34 +01:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: hugo --buildDrafts --gc --verbose --minify
|