From 11e9e197af7c98cf3d3d08c6d76068ac99996f57 Mon Sep 17 00:00:00 2001 From: Peaceultime Date: Thu, 14 Dec 2023 22:24:42 +0000 Subject: [PATCH] Update .github/actions/deploy-quartz/Dockerfile --- .github/actions/deploy-quartz/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/deploy-quartz/Dockerfile b/.github/actions/deploy-quartz/Dockerfile index 82afc7c..eed4072 100644 --- a/.github/actions/deploy-quartz/Dockerfile +++ b/.github/actions/deploy-quartz/Dockerfile @@ -2,9 +2,10 @@ FROM node:20-slim WORKDIR /usr/src/app -COPY /workspace/Peaceultime/system-aspect/content/ /usr/src/content/ -COPY /workspace/Peaceultime/system-aspect/quartz/ /usr/src/app/ +COPY quartz/ /usr/src/app/ +COPY content/ /usr/src/content/ +RUN mkdir output RUN npm ci CMD ["npx", "quartz", "build", "-d", "/usr/src/content", "-o", "/usr/src/output"] \ No newline at end of file