assets-for-lmika.org/.forgejo/workflows/publish.yaml
Leon Mika f5d3e4d582
Some checks failed
/ publish (push) Failing after 1m36s
Actually made use of the writing of image data
2025-11-23 22:17:46 +11:00

34 lines
972 B
YAML

on:
push:
jobs:
publish:
runs-on: docker
env:
NETLIFY_SITE_ID: cf248f4b-6e60-4956-b134-73122ae44299
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 21.1
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.24
- name: Installing Netlify
run: |
npm install
npm install netlify-cli -g
- name: Building Site
run: |
mkdir -p build
cp -r site/* build/.
- name: Building Header Image
run: |
go run ./cmd/fetch-header-image -o build/imgs/header.jpg \
-curr-image-data https://assets.lmika.org/data/current-pending-images.json
-out-data build/data/current-pending-images.json
- name: Deploying Site
run: |
netlify deploy --dir build --prod