2024-11-19 22:09:39 +01:00
|
|
|
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
|
2024-11-19 22:12:20 +01:00
|
|
|
- uses: actions/setup-go@v3
|
2024-11-19 22:09:39 +01:00
|
|
|
with:
|
2024-11-19 22:12:20 +01:00
|
|
|
go-version: '>=1.17.0'
|
2024-11-19 22:16:32 +01:00
|
|
|
- run: go version
|
2024-11-19 22:24:19 +01:00
|
|
|
- run: apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community hugo
|
2024-11-19 22:16:32 +01:00
|
|
|
- run: hugo version
|