Skip to content

build(deps): bump actions/checkout from 3.3.0 to 4.1.1 #16

build(deps): bump actions/checkout from 3.3.0 to 4.1.1

build(deps): bump actions/checkout from 3.3.0 to 4.1.1 #16

Workflow file for this run

name: HugoBuild
on:
push:
Branches:
- source
permissions: # added using https://github.com/step-security/secure-workflows
contents: write
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Git checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: true # To get theme
fetch-depth: 0
- name: Setup hugo
uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d # v2.6.0
with:
hugo-version: "0.91.2"
extended: true # Theme needs Hugo Extended
- name: Build
run: hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@64b46b4226a4a12da2239ba3ea5aa73e3163c75b # v3.9.1
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages
cname: 'https://chris.swanz.net'