Skip to content

Commit

Permalink
I love workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyvanlierop committed Dec 13, 2023
1 parent 4f100c5 commit 99c27a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
versionSpec: '5.x'

- name: Setup Bin Cache
uses: actions/cache@v3.6.0
uses: actions/cache@v3
with:
path: ./bin
path: ./DIBS/bin
key: bin-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}

- name: Setup NuGet Cache
uses: actions/cache@v3.6.0
uses: actions/cache@v3
with:
path: ./nuget
key: nuget-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:

- name: Get Cache
uses: actions/cache@v3.6.0
uses: actions/cache@v3
with:
path: ./zip
key: zip-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/thunderstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
run: dotnet tool install --global tcli --version 0.1.4

- name: Get Bin Cache
uses: actions/cache@v3.6.0
uses: actions/cache@v3
with:
path: ./bin
key: bin-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}

- name: Setup Zip Cache
uses: actions/cache@v3.6.0
uses: actions/cache@v3
with:
path: ./zip
key: zip-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down

0 comments on commit 99c27a6

Please sign in to comment.