We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1d8f40 commit 82d41cdCopy full SHA for 82d41cd
packages/bundler-plugin-core/src/utils.ts
@@ -233,6 +233,10 @@ export function determineReleaseName(): string | undefined {
233
process.env["ZEIT_BITBUCKET_COMMIT_SHA"] ||
234
// Flightcontrol - https://www.flightcontrol.dev/docs/guides/flightcontrol/environment-variables#built-in-environment-variables
235
process.env["FC_GIT_COMMIT_SHA"] ||
236
+ // Heroku #1 https://devcenter.heroku.com/changelog-items/630
237
+ process.env["SOURCE_VERSION"] ||
238
+ // Heroku #2 https://docs.sentry.io/product/integrations/deployment/heroku/#configure-releases
239
+ process.env["HEROKU_SLUG_COMMIT"] ||
240
gitRevision()
241
);
242
}
0 commit comments