From 2aa49bf6a94af584a7eef5ca428468b12ac23fca Mon Sep 17 00:00:00 2001 From: daz Date: Fri, 15 Nov 2024 14:31:56 -0700 Subject: [PATCH] Set the correct env var for develocity-ccud-plugin-version Fixes #446 --- sources/src/develocity/build-scan.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/src/develocity/build-scan.ts b/sources/src/develocity/build-scan.ts index b78fcce..f4e163f 100644 --- a/sources/src/develocity/build-scan.ts +++ b/sources/src/develocity/build-scan.ts @@ -19,6 +19,7 @@ export async function setup(config: BuildScanConfig): Promise { maybeExportVariableNotEmpty('DEVELOCITY_CAPTURE_FILE_FINGERPRINTS', config.getDevelocityCaptureFileFingerprints()) maybeExportVariableNotEmpty('DEVELOCITY_ENFORCE_URL', config.getDevelocityEnforceUrl()) maybeExportVariableNotEmpty('DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion()) + maybeExportVariableNotEmpty('DEVELOCITY_CCUD_PLUGIN_VERSION', config.getDevelocityCcudPluginVersion()) maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl()) maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername()) maybeExportVariableNotEmpty('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword())