2022-08-15 15:11:44 +02:00
|
|
|
name: Deploy Hugo PaperMod Demo to Pages
|
2020-07-21 20:08:28 +02:00
|
|
|
|
|
|
|
on:
|
2020-09-24 07:53:27 +02:00
|
|
|
push:
|
2020-09-24 08:48:18 +02:00
|
|
|
paths-ignore:
|
2022-03-27 16:09:44 +02:00
|
|
|
- "images/**"
|
|
|
|
- "LICENSE"
|
|
|
|
- "README.md"
|
2020-09-24 07:53:27 +02:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- exampleSite
|
2020-07-21 20:08:28 +02:00
|
|
|
workflow_dispatch:
|
2020-09-24 07:53:27 +02:00
|
|
|
# manual run
|
2022-03-27 16:09:44 +02:00
|
|
|
inputs:
|
|
|
|
hugoVersion:
|
|
|
|
description: "Hugo Version"
|
|
|
|
required: false
|
|
|
|
default: "0.83.0"
|
2020-07-21 20:08:28 +02:00
|
|
|
|
2022-08-15 15:11:44 +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-07-21 20:08:28 +02:00
|
|
|
jobs:
|
2022-08-15 15:11:44 +02:00
|
|
|
# Build job
|
|
|
|
build:
|
2020-07-21 20:08:28 +02:00
|
|
|
runs-on: ubuntu-latest
|
2022-08-15 15:11:44 +02:00
|
|
|
env:
|
|
|
|
HUGO_VERSION: "0.83.0"
|
2020-07-21 20:08:28 +02:00
|
|
|
steps:
|
2022-08-15 15:11:44 +02:00
|
|
|
- name: Check version
|
|
|
|
if: ${{ github.event.inputs.hugoVersion }}
|
|
|
|
run: export HUGO_VERSION="${{ github.event.inputs.hugoVersion }}"
|
|
|
|
- name: Install Hugo CLI
|
|
|
|
run: |
|
|
|
|
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.deb \
|
|
|
|
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2020-07-21 20:08:28 +02:00
|
|
|
with:
|
|
|
|
ref: exampleSite
|
2022-08-15 15:11:44 +02:00
|
|
|
- name: Setup Pages
|
|
|
|
id: pages
|
|
|
|
uses: actions/configure-pages@v1
|
2020-07-22 23:55:32 +02:00
|
|
|
- name: Get Theme
|
|
|
|
run: git submodule update --init --recursive
|
|
|
|
- name: Update theme to Latest commit
|
2020-07-22 23:48:45 +02:00
|
|
|
run: git submodule update --remote --merge
|
2022-08-15 15:11:44 +02:00
|
|
|
- name: Build with Hugo
|
|
|
|
run: |
|
|
|
|
hugo \
|
|
|
|
--buildDrafts --gc --verbose \
|
|
|
|
--baseURL ${{ steps.pages.outputs.base_url }}
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-pages-artifact@v1
|
2020-07-21 20:08:28 +02:00
|
|
|
with:
|
2022-08-15 15:11:44 +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
|
|
|
|
uses: actions/deploy-pages@v1
|