-
-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,176 changed files
with
33,103 additions
and
18,990 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: "Restore dependency & build cache" | ||
description: "Restore the dependency & build cache." | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Check dependency cache | ||
id: dep-cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ${{ env.CACHED_DEPENDENCY_PATHS }} | ||
key: ${{ env.DEPENDENCY_CACHE_KEY }} | ||
|
||
- name: Check build cache | ||
uses: actions/cache/restore@v3 | ||
id: build-cache | ||
with: | ||
path: ${{ env.CACHED_BUILD_PATHS }} | ||
key: ${{ github.sha }} | ||
|
||
- name: Check if caches are restored | ||
uses: actions/github-script@v6 | ||
if: steps.dep-cache.outputs.cache-hit != 'true' || steps.build-cache.outputs.cache-hit != 'true' | ||
with: | ||
script: core.setFailed('Dependency or build cache could not be restored - please re-run ALL jobs.') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.