From 5c5a7524ab0bdbc6e440fa1c1647e1299bc4d5f1 Mon Sep 17 00:00:00 2001 From: Nathan Cummins Date: Mon, 8 Sep 2025 13:41:05 +0930 Subject: [PATCH] Try cache implementation (may need server-side configuration) --- .gitea/workflows/deploy.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index f750968..79aad48 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -17,17 +17,22 @@ jobs: lfs: true - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 cache: npm - cache-dependency-path: "./package-lock.json" - name: Install shell: "bash" working-directory: . run: npm install + - name: Cache dist folder + uses: actions/cache@v4 + with: + path: dist/ + key: ${{ runner.os }}-dist + - name: Build shell: "bash" working-directory: .