diff --git a/.gitea/workflows/build-action.yaml b/.gitea/workflows/build-action.yaml index b917ad14..a3b15bc3 100644 --- a/.gitea/workflows/build-action.yaml +++ b/.gitea/workflows/build-action.yaml @@ -37,15 +37,15 @@ jobs: git checkout test echo "Repository cloned and checked out to test branch." - # Cache pnpm dependencies + # Cache pnpm dependencies - name: Cache pnpm store - uses: https://gitea.com/actions/cache@v3 + uses: actions/cache@v3 id: pnpm-cache with: - path: ~/.pnpm-store + path: .pnpm-store key: ${{ runner.os }}-pnpm-store-${{ hashFiles('pansoft-plrl/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-pnpm-store- + ${{ runner.os }}-pnpm-store- # Install dependencies and build - name: Install dependencies and build