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

View file

@ -13,7 +13,7 @@ export async function run(): Promise<void> {
}
async function cacheMiseTools(): Promise<void> {
if (!core.getState('CACHE')) {
if (core.getState('CACHE') !== 'true') {
core.info('Skipping saving cache')
return
}