1
0
Fork 0

changes isfeatureavailable logic

pull/1935/head
Prajjwal 2024-04-15 20:38:37 +05:30
parent 596cfa8725
commit 868b4d32d5
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "github-actions.warp-cache", "name": "github-actions.warp-cache",
"version": "1.1.2", "version": "1.1.3",
"preview": true, "preview": true,
"description": "Github action to use WarpBuild's in-house cache offering", "description": "Github action to use WarpBuild's in-house cache offering",
"keywords": [ "keywords": [

View File

@ -58,7 +58,7 @@ function checkKey(key: string): void {
*/ */
export function isFeatureAvailable(): boolean { export function isFeatureAvailable(): boolean {
return !!process.env['WARPBUILD_CACHE_URL'] return !!process.env['WARPBUILD_RUNNER_VERIFICATION_TOKEN']
} }
/** /**