Files
thesatelliteoflove/.gitea/workflows/hugo_build.yaml
Phil 63a0aa91b2
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2s
Build Hugo Site / build (push) Failing after 15s
crap shoot build
2024-11-19 14:09:39 -07:00

21 lines
517 B
YAML

name: Build Hugo Site
run-name: ${{ gitea.actor }} is building The Satellite of Love
on: [push]
jobs:
build:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.105.0'
extended: true
- name: Build
run: hugo
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public