diff options
Diffstat (limited to '.github/workflows/deploy.yml')
| -rw-r--r-- | .github/workflows/deploy.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1812734..82ee662 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,12 +16,12 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: npm + cache: yarn - name: Install dependencies - run: npm ci + run: yarn install --frozen-lockfile - name: Build website - run: npm run build + run: yarn build - name: Upload Build Artifact uses: actions/upload-pages-artifact@v3 |
