Skip to content

Commit

Permalink
Log on load
Browse files Browse the repository at this point in the history
  • Loading branch information
joroshiba committed Jul 27, 2023
1 parent 3ae3e17 commit 351f70c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/restore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ async function run() {
const cache = function () {
const useBuildJet = core.getBooleanInput("use-buildjet");
if (useBuildJet) {
core.info ("Using BuildJet Cache");
return buildJetCache;
}
core.info ("Using GitHub Cache");
return ghCache;
}();

Expand Down
2 changes: 0 additions & 2 deletions src/save.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ async function run() {
const cache = function () {
const useBuildJet = core.getBooleanInput("use-buildjet");
if (useBuildJet) {
core.info ("Using BuildJet Cache");
return buildJetCache;
}
core.info ("Using GitHub Cache");
return ghCache;
}();

Expand Down

0 comments on commit 351f70c

Please sign in to comment.