CU #183
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Hugo site | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
default: 'warning' | |
jobs: | |
transform: | |
# Workaround for https://github.com/actions/runner-images/issues/6680 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Inject slug/short variables | |
uses: rlespinasse/[email protected] | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@master | |
with: | |
submodules: false | |
# Setting true above seems to lead to submodule updation problems. | |
fetch-depth: 1 | |
- name: Update submodules | |
id: update_submods | |
run: | | |
set -o xtrace | |
git submodule update --init --recursive | |
git submodule update --remote --merge --recursive | |
- name: Get changed files | |
id: changed-files | |
if: ${{ github.event_name != 'workflow_dispatch' }} | |
uses: tj-actions/changed-files@v41 | |
with: | |
files_ignore: | | |
static/** | |
content/** | |
- name: Setup Hugo | |
id: setup_hugo | |
if: ${{ steps.changed-files.conclusion == 'skipped' || steps.changed-files.outputs.any_changed == 'true'}} | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: "0.122.0" | |
# extended: true | |
# Step 3 - Clean and don't fail | |
- name: Clean build_github directory | |
id: clean_build | |
if: steps.setup_hugo.conclusion == 'success' | |
run: rm -rf build_github | |
- name: Build hugo site pages | |
id: hugo_build | |
if: steps.clean_build.conclusion == 'success' | |
run: | | |
hugo | |
- name: Deploy | |
if: ${{ github.event_name != 'pull_request' && steps.hugo_build.conclusion == 'success'}} | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build_github | |
publish_branch: gh-pages | |
force_orphan: true # git history growth - even on non-src branches - makes cloning slow. |