Tests
Deploy Quartz site to GitHub Pages / build (push) Failing after 19s
Details
Deploy Quartz site to GitHub Pages / build (push) Failing after 19s
Details
This commit is contained in:
parent
0a249eab4c
commit
ce81a43764
|
|
@ -0,0 +1,11 @@
|
|||
FROM node:20-slim as builder
|
||||
WORKDIR /usr/src/app
|
||||
COPY package.json .
|
||||
COPY package-lock.json* .
|
||||
RUN npm ci
|
||||
|
||||
FROM node:20-slim
|
||||
WORKDIR /usr/src/app
|
||||
COPY --from=builder /usr/src/app/ /usr/src/app/
|
||||
COPY . .
|
||||
CMD ["npx", "quartz", "build", "-d", "/workspace/Peaceultime/system-aspect", "-o", "/output"]
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
name: 'Build Quartz'
|
||||
description: 'Use Quartz to build the static website content'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
Loading…
Reference in New Issue