From de5e2c386cba30e1f67b5eb6a23119cd38890de4 Mon Sep 17 00:00:00 2001 From: Vadim Vetrov Date: Sat, 16 Mar 2024 19:19:53 +0300 Subject: [PATCH] fix deploy settings --- .github/workflows/deploy_github_pages.yaml | 4 ++-- web_frontend/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_github_pages.yaml b/.github/workflows/deploy_github_pages.yaml index cf49ca4..575ddc6 100644 --- a/.github/workflows/deploy_github_pages.yaml +++ b/.github/workflows/deploy_github_pages.yaml @@ -33,7 +33,7 @@ jobs: run: npm install --global yarn - name: Install dependencies - run: yarn install --pure-lockfile + run: yarn install # Build - name: Build project @@ -43,4 +43,4 @@ jobs: - name: Deploy to Github Pages 🚀 uses: JamesIves/github-pages-deploy-action@v4 with: - folder: .output/public # The folder the action should deploy. + folder: web_frontend/.output/public # The folder the action should deploy. diff --git a/web_frontend/Dockerfile b/web_frontend/Dockerfile index 65a4a94..a931b8e 100644 --- a/web_frontend/Dockerfile +++ b/web_frontend/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app COPY ./package.json . COPY ./yarn.lock . -RUN yarn install --pure-lockfile +RUN yarn install COPY --exclude=./nginx . . RUN yarn nuxi generate