Skip to content

Commit

Permalink
fix deploy settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Waujito committed Mar 16, 2024
1 parent f728da3 commit de5e2c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_github_pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
2 changes: 1 addition & 1 deletion web_frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit de5e2c3

Please sign in to comment.