Skip to content

Commit

Permalink
updating dist
Browse files Browse the repository at this point in the history
  • Loading branch information
darpanLalwani committed Sep 23, 2024
1 parent 78869d9 commit 93504fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup-env/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9330,7 +9330,6 @@ function wrappy (fn, cb) {

const core = __nccwpck_require__(2186);
const axios = __nccwpck_require__(8757);
const github = __nccwpck_require__(5438);
const InputValidator = __nccwpck_require__(4881);
const constants = __nccwpck_require__(1468);
const { BROWSERSTACK_TEMPLATE } = __nccwpck_require__(1468);
Expand Down Expand Up @@ -9367,7 +9366,7 @@ class ActionInput {
this.githubApp = core.getInput(INPUT.GITHUB_APP);
this.rerunAttempt = process?.env?.GITHUB_RUN_ATTEMPT;
this.runId = process?.env?.GITHUB_RUN_ID;
this.repository = `${github?.context?.repo?.owner}/${github?.context?.repo?.repo}`;
this.repository = process?.env?.GITHUB_REPOSITORY;
} catch (e) {
throw Error(`Action input failed for reason: ${e.message}`);
}
Expand Down Expand Up @@ -9404,6 +9403,7 @@ class ActionInput {
core.info(`${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable set as: ${this.buildName}`);
core.info(`Use ${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable for your build name capability in your tests\n`);

core.info(`The new way of setting repository is: ${this.repository}`);
if (await this.checkIfBStackReRun()) {
await this.setBStackRerunEnvVars();
}
Expand Down

0 comments on commit 93504fe

Please sign in to comment.