Files
DefectingCat.github.io/.gitlab-ci.yml
2024-05-22 11:51:28 +08:00

25 lines
468 B
YAML

stages:
- build
image: 'node:latest'
before_script:
- apt update -y
- corepack enable pnpm
build:pretty-check:
stage: build
script:
- pnpm i
- pnpm pretty-check
build:local:
stage: build
script:
- pnpm build-local
- mkdir .next/standalone/public && cp -aR public/* .next/standalone/public
- mkdir .next/standalone/public/_next && cp -aR .next/static/ .next/standalone/public/_next
artifacts:
paths:
- .next/standalone