assets-for-lmika.org/.forgejo/workflows/publish.yaml
lmika 58c2290fea
Some checks failed
/ publish (push) Failing after 35s
Update .forgejo/workflows/publish.yaml
Another fix at CI/CD
2025-11-23 19:57:04 +00:00

35 lines
894 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 cache clean --force
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
- name: Deploying Site
run: |
netlify deploy --dir build --prod