Skip to content

Commit

Permalink
chore: fix content cache
Browse files Browse the repository at this point in the history
  • Loading branch information
BlurOne-GIT authored Oct 14, 2024
1 parent 460fbc0 commit b6b8bdf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b6b8bdf

Please sign in to comment.