Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
fix(heroku): fix externalBuildId
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Mar 6, 2019
1 parent cb3ccc2 commit d33d4d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"scripts": {
"dev:upload": "babel-node ./src/index upload __fixtures__",
"release": "standard-version && conventional-github-releaser --preset angular",
"prebuild": "rm -rf lib",
"build": "NODE_ENV=production babel -d lib src",
"prepublish": "yarn build",
"format": "prettier --write \"**/*.{js,md,json}\" ",
Expand Down
2 changes: 1 addition & 1 deletion src/getEnvironment.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function herokuCi(env) {
ci: 'heroku',
commit: env.HEROKU_TEST_RUN_COMMIT_VERSION,
branch: env.HEROKU_TEST_RUN_BRANCH,
externalBuildId: `${env.HEROKU_TEST_RUN_ID}-${env.CI_NODE_INDEX}`,
externalBuildId: env.HEROKU_TEST_RUN_ID,
batchCount: env.CI_NODE_TOTAL,
}
}
Expand Down

0 comments on commit d33d4d3

Please sign in to comment.