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