assets-for-lmika.org/.forgejo/workflows/publish.yaml
lmika 20471249d5
All checks were successful
/ publish (push) Successful in 1m45s
Update .forgejo/workflows/publish.yaml
Fixed deploy call.
2025-11-23 20:44:39 +00:00

34 lines
872 B
YAML

on:
push:
schedule:
- cron: '30 15 * * *'
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 --save-dev
- 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
- name: Deploying Site
run: |
npx netlify deploy --dir build --prod