Skip to content

Commit

Permalink
ci(repo): use seperate turbo caches for electron and pr workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
bambanah committed Sep 12, 2024
1 parent 0ea5613 commit f8c6ef0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release-electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
key: turbo-${{ runner.os }}-${{ github.job }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
turbo-${{ runner.os }}-${{ github.job }}-
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
key: turbo-${{ runner.os }}-${{ github.job }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
turbo-${{ runner.os }}-${{ github.job }}-
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
Expand Down

0 comments on commit f8c6ef0

Please sign in to comment.