1
0
Fork 0

fix: changes baseURL to WARP_CACHE_URL

pull/1716/head
Prajjwal 2023-11-30 15:20:13 +05:30
parent 0a21fc02b1
commit bee057fd9e
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ const versionSalt = '1.0'
function getCacheApiUrl(resource: string): string { function getCacheApiUrl(resource: string): string {
const baseUrl: string = const baseUrl: string =
process.env['ACTIONS_CACHE_URL'] ?? 'https://cache.warpbuild.com' process.env['WARP_CACHE_URL'] ?? 'https://cache.warpbuild.com'
if (!baseUrl) { if (!baseUrl) {
throw new Error('Cache Service Url not found, unable to restore cache.') throw new Error('Cache Service Url not found, unable to restore cache.')
} }