thesatelliteoflove/.gitea/workflows/hugo_build.yaml
Phil e88d0f790c
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2s
Build Hugo Site / build (push) Has been cancelled
add gcc
2024-11-19 14:20:16 -07:00

16 lines
424 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
- uses: actions/setup-go@v3
with:
go-version: '>=1.17.0'
- run: go version
- run: apk add build-base
- run: CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest
- run: hugo version