Re-enable cache-cleanup on Windows

This commit is contained in:
Daz DeBoer 2022-08-26 06:22:28 -06:00
parent 8be955ee80
commit 82bc72e1e7
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
2 changed files with 2 additions and 9 deletions

View file

@ -7,7 +7,7 @@ on:
type: string
runner-os:
type: string
default: '["ubuntu-latest", "macos-latest"]' # Windows is not yet supported
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
download-dist:
type: boolean
default: false

View file

@ -48,14 +48,7 @@ export function isCacheDebuggingEnabled(): boolean {
}
export function isCacheCleanupEnabled(): boolean {
const userEnabled = core.getBooleanInput(CACHE_CLEANUP_ENABLED_PARAMETER)
if (userEnabled && process.platform === 'win32') {
core.warning('Cache cleanup is not yet supported on Windows')
return false
}
return userEnabled
return core.getBooleanInput(CACHE_CLEANUP_ENABLED_PARAMETER)
}
/**