From 6c176f649a401bab4ee57dd9f4173e149370d4f3 Mon Sep 17 00:00:00 2001 From: Karolina Rakoczy Date: Thu, 20 Apr 2023 12:54:22 +0200 Subject: [PATCH] Fix tests workflow (#3527) --- .github/workflows/getEnvironmentVariables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/getEnvironmentVariables.js b/.github/workflows/getEnvironmentVariables.js index d79006ab3..ca75b376f 100644 --- a/.github/workflows/getEnvironmentVariables.js +++ b/.github/workflows/getEnvironmentVariables.js @@ -51,7 +51,7 @@ program ); } - const branch = await getBranch(options.repo_token); + const branch = await getBranch(options.repo_token, options.version); core.setOutput("branch", branch); }) .parse();