From 140d8d9a0975d0f8a17e6e49654373dee6c1ccce Mon Sep 17 00:00:00 2001 From: Vladimir Sitnikov Date: Wed, 19 Aug 2020 01:32:18 +0300 Subject: [PATCH] Parse properties from properties tag rather than from arguments --- cache-action-entrypoint/src/main/kotlin/main.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache-action-entrypoint/src/main/kotlin/main.kt b/cache-action-entrypoint/src/main/kotlin/main.kt index 311e813..99d16f8 100644 --- a/cache-action-entrypoint/src/main/kotlin/main.kt +++ b/cache-action-entrypoint/src/main/kotlin/main.kt @@ -120,7 +120,7 @@ suspend fun mainInternal(stage: ActionStage) { gradle = install(gradleDistribution), projectPath = params.path, arguments = args, - properties = getInput("arguments").splitLines(), + properties = getInput("properties").splitLines(), ) val cacheProxy = CacheProxy()