feat: upgrade to images of version 1 (rolling tag) (#93)

This commit is contained in:
Webber Takken
2022-04-03 17:59:02 +02:00
committed by GitHub
parent 38e7f4ce44
commit 33cd3ea96f
5 changed files with 8 additions and 6 deletions

4
dist/index.js generated vendored
View File

@@ -278,7 +278,7 @@ class ImageTag {
}
}
get tag() {
return `${this.version}-${this.builderPlatform}`.replace(/-+$/, '');
return `ubuntu-${this.version}-${this.builderPlatform}`.replace(/-+$/, '');
}
get image() {
return `${this.repository}/${this.name}`.replace(/^\/+/, '');
@@ -288,7 +288,7 @@ class ImageTag {
if (customImage && customImage !== '') {
return customImage;
}
const dockerRepoVersion = 0;
const dockerRepoVersion = 1;
return `${image}:${tag}-${dockerRepoVersion}`;
}
}

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long