Files
continuum-3d-site/.gitea/workflows/build.yml
T
Claude d02079e3ab
build / build (push) Failing after 2m6s
Scaffold Eleventy + Pug + Tailwind + i18n landing page
2026-08-02 01:37:50 +02:00

35 lines
810 B
YAML

name: build
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
# Deploy step intentionally not wired up yet: this runner spins up
# ephemeral job containers (no host bind-mount for the workspace), so
# syncing dist/ to /mnt/e/sites/<site> needs an SSH deploy key added as
# a Gitea Actions secret. See repo README for the manual deploy steps
# used until that's set up.