diff --git a/dist/index.js b/dist/index.js index 175f3cf6..d4f3ada3 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index aa89bccd..fbd793e1 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/image-tag.ts b/src/model/image-tag.ts index 2b9fd910..2b445846 100644 --- a/src/model/image-tag.ts +++ b/src/model/image-tag.ts @@ -6,7 +6,7 @@ class ImageTag { public targetPlatform: string; public builderPlatform: string; public customImage: string; - public imageRollingVersion: number; + public imageRollingVersion: string; public imagePlatformPrefix: string; constructor(imageProperties: { [key: string]: string }) { @@ -38,7 +38,7 @@ class ImageTag { providerStrategy, ); this.imagePlatformPrefix = ImageTag.getImagePlatformPrefixes(buildPlatform); - this.imageRollingVersion = Number(containerRegistryImageVersion); // Will automatically roll to the latest non-breaking version. + this.imageRollingVersion = containerRegistryImageVersion; // Will automatically roll to the latest non-breaking version. } static get versionPattern(): RegExp {