github.io/.github/workflows/gh-pages.yml
Sivert V. Sæther d21051adde Anotha lil dump
Think I'm finally finished fiddling with the devops stuff and ready to
finally focus on the content! 😁
2022-04-08 00:04:12 +00:00

30 lines
720 B
YAML

name: github pages
on:
push:
branches:
- master
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Git Checkout
uses: actions/checkout@v2
with:
# submodules: true
fetch-depth: 0
- name: npm install
uses: bahmutov/npm-install@v1
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Build
run: hugo -e prod --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public