fix: fix cache_save option (#144)

This commit is contained in:
Risu 2024-11-19 04:20:21 +09:00 committed by GitHub
parent 53d027c2e9
commit 2d33c855a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

2
dist/cache-save/index.js generated vendored
View file

@ -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

File diff suppressed because one or more lines are too long

View file

@ -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
} }