From b6b8bdf948311c93df8dff0dfa6a19ea8b4b0803 Mon Sep 17 00:00:00 2001 From: BlurOne! <61806094+BlurOne-GIT@users.noreply.github.com> Date: Sun, 13 Oct 2024 23:23:28 -0300 Subject: [PATCH] chore: fix content cache --- .github/workflows/publish.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 955e609..af11b03 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,10 +31,10 @@ jobs: - name: Cache Content directory uses: actions/cache@v4 with: - path: Logical/bin/Release/net8.0/linux-x64/publish/Content - key: content-${{ hashFiles('Logical/Content/**') }} + path: Logical/Content/obj + key: content-obj-${{ hashFiles('Logical/Content/**') }} restore-keys: | - content- + content-obj- #- name: Restore dependencies # run: dotnet restore @@ -87,10 +87,10 @@ jobs: - name: Cache Content directory uses: actions/cache@v4 with: - path: Logical/bin/Release/net8.0/win-x64/publish/Content - key: content-${{ hashFiles('Logical/Content/**') }} + path: Logical/Content/obj + key: content-obj-${{ hashFiles('Logical/Content/**') }} restore-keys: | - content- + content-obj- #- name: Restore dependencies # run: dotnet restore