From 59d609527868ca009fdbe53440811f15d66c5604 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Wed, 3 Apr 2024 16:38:44 +0200 Subject: [PATCH] feat: some shit --- .github/workflows/default.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/default.yaml b/.github/workflows/default.yaml index 9a943ad..644544c 100644 --- a/.github/workflows/default.yaml +++ b/.github/workflows/default.yaml @@ -29,14 +29,14 @@ jobs: - name: 🔢 Calculate cache ids run: | git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id - LFS_CACHE_ID=$(cat .lfs-assets-id | md5sum)-v1 # Get the GitHub repository name - PNPM_CACHE_ID=$( cat pnpm-lock.yaml | md5sum )-v1 + LFS_CACHE_ID=$(cat .lfs-assets-id | md5sum)-v2 # Get the GitHub repository name + PNPM_CACHE_ID=$( cat pnpm-lock.yaml | md5sum )-v2q echo "LFS_CACHE_ID=$LFS_CACHE_ID" >> $GITHUB_ENV echo "PNPM_STORE_PATH=$(pnpm store path)" >> $GITHUB_ENV echo "PNPM_CACHE_ID=$PNPM_CACHE_ID" >> $GITHUB_ENV - name: 🗳️ Setup pnpm cache - uses: https://github.com/actions/cache@v3 + uses: https://github.com/actions/cache@v4 with: path: ${{ env.PNPM_STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ env.PNPM_CACHE_ID }}