Skip to content

Commit

Permalink
fix cache
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrossh committed May 1, 2024
1 parent 84d619f commit e98e60e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,22 @@ jobs:

website-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'website'
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
ache-dependency-path: ./website/package-lock.json
ache-dependency-path: '**/package-lock.json'
- run: npm ci
working-directory: ./website
- run: npm run build
working-directory: ./website
- uses: actions/upload-pages-artifact@v3
with:
path: 'website/build/'
path: 'build/'

website-deploy:
needs: website-build
Expand Down

0 comments on commit e98e60e

Please sign in to comment.