From 62846a110b18b6af399146aad1cd51138f40b93b Mon Sep 17 00:00:00 2001 From: Matt Travi Date: Fri, 2 Dec 2022 16:35:57 -0600 Subject: [PATCH] test(integration): omitted the `GITHUB_ACTION` env var as well --- test/integration.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration.test.js b/test/integration.test.js index 6329de76..dc5e0d8b 100644 --- a/test/integration.test.js +++ b/test/integration.test.js @@ -30,7 +30,7 @@ const { readJson, writeJson } = fsExtra; /* eslint camelcase: ["error", {properties: "never"}] */ // Environment variables used with semantic-release cli (similar to what a user would setup) -const { GITHUB_ACTIONS, GITHUB_TOKEN, ...processEnvWithoutGitHubActionsVariables } = process.env; +const { GITHUB_ACTION, GITHUB_ACTIONS, GITHUB_TOKEN, ...processEnvWithoutGitHubActionsVariables } = process.env; const env = { ...processEnvWithoutGitHubActionsVariables, ...npmRegistry.authEnv,