fix: fix cache_save option (#144)
This commit is contained in:
parent
53d027c2e9
commit
2d33c855a3
3 changed files with 3 additions and 3 deletions
2
dist/cache-save/index.js
generated
vendored
2
dist/cache-save/index.js
generated
vendored
|
@ -60998,7 +60998,7 @@ async function run() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async function cacheMiseTools() {
|
async function cacheMiseTools() {
|
||||||
if (!core.getState('CACHE')) {
|
if (core.getState('CACHE') !== 'true') {
|
||||||
core.info('Skipping saving cache');
|
core.info('Skipping saving cache');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
2
dist/cache-save/index.js.map
generated
vendored
2
dist/cache-save/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@ export async function run(): Promise<void> {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function cacheMiseTools(): Promise<void> {
|
async function cacheMiseTools(): Promise<void> {
|
||||||
if (!core.getState('CACHE')) {
|
if (core.getState('CACHE') !== 'true') {
|
||||||
core.info('Skipping saving cache')
|
core.info('Skipping saving cache')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue