@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Utils.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.123.0",
3
+ "version": "2.124.0",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
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}`