2022-08-15 15:33:50 +02:00
|
|
|
name: Deploy Hugo PaperMod Demo to Pages
|
2020-09-24 08:27:09 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-09-24 08:48:18 +02:00
|
|
|
paths-ignore:
|
2022-03-27 16:05:36 +02:00
|
|
|
- "images/**"
|
|
|
|
- "LICENSE"
|
|
|
|
- "README.md"
|
2020-09-24 08:27:09 +02:00
|
|
|
branches:
|
2022-03-27 16:05:36 +02:00
|
|
|
- master
|
2020-09-24 08:27:09 +02:00
|
|
|
- exampleSite
|
|
|
|
workflow_dispatch:
|
|
|
|
# manual run
|
2022-03-27 16:05:36 +02:00
|
|
|
inputs:
|
|
|
|
hugoVersion:
|
|
|
|
description: "Hugo Version"
|
|
|
|
required: false
|
2023-12-16 15:31:20 +01:00
|
|
|
default: "0.112.4"
|
2020-09-24 08:27:09 +02:00
|
|
|
|
2022-08-15 15:33:50 +02:00
|
|
|
# Allow one concurrent deployment
|
|
|
|
concurrency:
|
|
|
|
group: "pages"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
# Default to bash
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
|
2020-09-24 08:27:09 +02:00
|
|
|
jobs:
|
2022-08-15 15:33:50 +02:00
|
|
|
# Build job
|
|
|
|
build:
|
2020-09-24 08:27:09 +02:00
|
|
|
runs-on: ubuntu-latest
|
2022-08-15 15:33:50 +02:00
|
|
|
env:
|
2023-12-16 15:31:20 +01:00
|
|
|
HUGO_VERSION: "0.112.4"
|
2020-09-24 08:27:09 +02:00
|
|
|
steps:
|
2022-08-15 15:33:50 +02:00
|
|
|
- name: Check version
|
|
|
|
if: ${{ github.event.inputs.hugoVersion }}
|
|
|
|
run: export HUGO_VERSION="${{ github.event.inputs.hugoVersion }}"
|
|
|
|
- name: Install Hugo CLI
|
|
|
|
run: |
|
2023-12-16 15:37:15 +01:00
|
|
|
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-amd64.deb \
|
2022-08-15 15:33:50 +02:00
|
|
|
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2020-09-24 08:27:09 +02:00
|
|
|
with:
|
|
|
|
ref: exampleSite
|
2022-08-15 15:33:50 +02:00
|
|
|
- name: Setup Pages
|
|
|
|
id: pages
|
2023-08-12 09:59:16 +02:00
|
|
|
uses: actions/configure-pages@v3
|
2020-09-24 08:27:09 +02:00
|
|
|
- name: Get Theme
|
|
|
|
run: git submodule update --init --recursive
|
|
|
|
- name: Update theme to Latest commit
|
|
|
|
run: git submodule update --remote --merge
|
2022-08-15 15:33:50 +02:00
|
|
|
- name: Build with Hugo
|
|
|
|
run: |
|
|
|
|
hugo \
|
|
|
|
--buildDrafts --gc --verbose \
|
|
|
|
--baseURL ${{ steps.pages.outputs.base_url }}
|
|
|
|
- name: Upload artifact
|
2023-08-12 09:59:16 +02:00
|
|
|
uses: actions/upload-pages-artifact@v2
|
2020-09-24 08:27:09 +02:00
|
|
|
with:
|
2022-08-15 15:33:50 +02:00
|
|
|
path: ./public
|
|
|
|
# Deployment job
|
|
|
|
deploy:
|
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
steps:
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
id: deployment
|
2023-08-12 09:59:16 +02:00
|
|
|
uses: actions/deploy-pages@v2
|