From d8db32cb31c852a0494a61e8f01fed9aee12e6f2 Mon Sep 17 00:00:00 2001 From: Peaceultime Date: Thu, 14 Dec 2023 23:04:53 +0000 Subject: [PATCH] Update .github/actions/deploy-quartz/Dockerfile --- .github/actions/deploy-quartz/Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/actions/deploy-quartz/Dockerfile b/.github/actions/deploy-quartz/Dockerfile index 77e3aba..0262c7d 100644 --- a/.github/actions/deploy-quartz/Dockerfile +++ b/.github/actions/deploy-quartz/Dockerfile @@ -1,10 +1,14 @@ FROM node:20-slim -COPY content/ content/ -COPY quartz/ quartz/ +WORKDIR /workspace/Peaceultime/system-aspect/content + +# COPY content content +# COPY quartz quartz RUN mkdir output RUN cd quartz RUN npm ci +RUN pwd + CMD ["npx", "quartz", "build", "-d", "../content", "-o", "../output"] \ No newline at end of file