We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf2944 commit 1e7d413Copy full SHA for 1e7d413
packages/bundler-plugin-core/src/utils.ts
@@ -217,6 +217,8 @@ export function determineReleaseName(): string | undefined {
217
process.env["CF_PAGES_COMMIT_SHA"] ||
218
// AWS CodeBuild - https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-env-vars.html
219
process.env["CODEBUILD_RESOLVED_SOURCE_VERSION"] ||
220
+ // Bitbucket - https://support.atlassian.com/bitbucket-cloud/docs/variables-and-secrets/
221
+ process.env["BITBUCKET_COMMIT"] ||
222
// CircleCI - https://circleci.com/docs/2.0/env-vars/
223
process.env["CIRCLE_SHA1"] ||
224
// Vercel - https://vercel.com/docs/v2/build-step#system-environment-variables
0 commit comments