Skip to content

Commit

Permalink
🐛 ci: fix path to build website
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepg authored Apr 14, 2024
1 parent 6950581 commit a323c05
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:

steps:
- uses: actions/checkout@v4
- run: cd ${{github.workspace}}/website/

- uses: actions/setup-node@v4
with:
Expand All @@ -19,12 +18,14 @@ jobs:
cache-dependency-path: website/package-lock.json

- run: npm ci
working-directory: ./website
- run: run run build
working-directory: ./website

- uses: actions/[email protected]
- uses: actions/[email protected]
with:
name: "website-build-artifact"
path: "dist/**"
path: "website/dist/**"
overwrite: true

deploy:
Expand Down

0 comments on commit a323c05

Please sign in to comment.