summaryrefslogtreecommitdiff
path: root/.github/workflows/deploy.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/deploy.yml')
-rw-r--r--.github/workflows/deploy.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 82ee662..1812734 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: yarn
+ cache: npm
- name: Install dependencies
- run: yarn install --frozen-lockfile
+ run: npm ci
- name: Build website
- run: yarn build
+ run: npm run build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3