Skip to content

Commit

Permalink
fix: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yoctoyotta1024 committed Oct 30, 2024
1 parent 56422f5 commit 2e253ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ runner.temp }}/yaxt/
key: ${{ runner.os }}-yaxt-cache-${{ hashFiles('**/yaxt.lock') }}
key: ${{ runner.os }}-yaxt-cache-${{ hashFiles('${{ runner.temp }}/yaxt/**') }}

- name: Build YAC
run: |
Expand All @@ -43,7 +43,7 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ runner.temp }}/yac/
key: ${{ runner.os }}-yac-cache-${{ hashFiles('**/yac.lock') }}
key: ${{ runner.os }}-yac-cache-${{ hashFiles('${{ runner.temp }}/yac/**') }}

- name: Build main
run: |
Expand All @@ -62,7 +62,7 @@ jobs:
uses: actions/cache@v4
with:
path: ./build/
key: ${{ runner.os }}-cleo-build-cache-${{ hashFiles('**/cleo-build-file') }}
key: ${{ runner.os }}-cleo-build-cache-${{ hashFiles('./build/**') }}

compile:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2e253ee

Please sign in to comment.