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