@leverege/build-tools 2.68.3-beta.3 → 2.68.3-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/Utils.mjs +1 -1
package/package.json
CHANGED
package/src/Utils.mjs
CHANGED
|
@@ -569,7 +569,7 @@ export const analyzeRepository = async ( giveGuidance ) => {
|
|
|
569
569
|
}
|
|
570
570
|
|
|
571
571
|
const containerName = closestPackageJson?.name.replace( /^@[^/]+\//, '' ) || rootPyProjectToml?.project.name
|
|
572
|
-
const imagePlatform = closestPackageJson?.leverege.imagePlatform || rootPyProjectToml?.leverege['image-platform'] || 'linux/amd64'
|
|
572
|
+
const imagePlatform = closestPackageJson?.leverege.imagePlatform || rootPyProjectToml?.leverege['image-platform'] || [ 'linux/amd64' ]
|
|
573
573
|
const artifactRegistry = closestPackageJson?.leverege.registry || rootPyProjectToml?.leverege.registry
|
|
574
574
|
const artifactProject = closestPackageJson?.artifactRegistry.project || rootPyProjectToml?.artifactRegistry.project || 'unknown'
|
|
575
575
|
const packageVersion = `v${closestPackageJson?.version || rootPyProjectToml?.project.version}`
|