@leverege/build-tools 2.123.0 → 2.124.0
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
|
@@ -740,7 +740,7 @@ export const analyzeRepository = async ( giveGuidance ) => {
|
|
|
740
740
|
}
|
|
741
741
|
|
|
742
742
|
const containerName = closestPackageJson?.name.replace( /^@[^/]+\//, '' ) || rootPyProjectToml?.project.name
|
|
743
|
-
const imagePlatform = closestPackageJson?.leverege.imagePlatform || rootPyProjectToml?.leverege['image-platform'] || [ 'linux/amd64' ]
|
|
743
|
+
const imagePlatform = closestPackageJson?.leverege.imagePlatform || rootPyProjectToml?.leverege['image-platform'] || [ 'linux/amd64', 'linux/arm64' ]
|
|
744
744
|
const artifactRegistry = closestPackageJson?.leverege.registry || rootPyProjectToml?.leverege.registry
|
|
745
745
|
const artifactProject = closestPackageJson?.artifactRegistry.project || rootPyProjectToml?.artifactRegistry.project || 'unknown'
|
|
746
746
|
const packageVersion = `v${closestPackageJson?.version || rootPyProjectToml?.project.version}`
|