diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 79aad48..5afe778 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -16,6 +16,14 @@ jobs: with: lfs: true + - name: Cache Astro build cache folder + uses: actions/cache@v4 + with: + path: | + node_modules/.astro/ + node_modules/.vite/ + key: ${{ runner.os }}-buildcache + - name: Setup Node uses: actions/setup-node@v5 with: @@ -27,12 +35,6 @@ jobs: 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: .