From 4dd43fcf539abc0d49071d52da7e28061b513705 Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Thu, 7 Mar 2024 13:51:48 +0000 Subject: [PATCH] We use npm, not yarn in this house --- .gitea/workflows/build-and-copy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-and-copy.yaml b/.gitea/workflows/build-and-copy.yaml index 52de24b..42a78ef 100644 --- a/.gitea/workflows/build-and-copy.yaml +++ b/.gitea/workflows/build-and-copy.yaml @@ -13,9 +13,9 @@ jobs: with: node-version: 20.x - name: Install dependencies 📦 - run: yarn install --frozen-lockfile + run: npm ci - name: Build eleventy - run: yarn build + run: npm run build env: NODE_ENV: production OMNIVORE_API_KEY: ${{ secrets.OMNIVORE_API_KEY }}