From 98d82234a9cb3c8ac4badf4741bc27e9d9189fbf Mon Sep 17 00:00:00 2001 From: Dennis Thiessen Date: Sat, 15 Mar 2025 21:43:20 +0100 Subject: [PATCH] updated --- .gitea/workflows/workflow.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index 80eb943..a8e471a 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -17,10 +17,10 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18 - cache: 'yarn' + cache: 'npm' - name: Install Dependencies - run: yarn install --frozen-lockfile # Use npm install if using npm + run: npm install --frozen-lockfile - name: Build Gatsby Site - run: yarn build # Runs Gatsby's production build \ No newline at end of file + run: npm build \ No newline at end of file