We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ce5f7 commit 7c263c0Copy full SHA for 7c263c0
.github/workflows/tags.js
@@ -25,7 +25,8 @@ incus | 1:6.6-debian12-202411092101 | https://pkgs.zabbly.com/incus/stable bookw
25
const dateStr = `${date.getFullYear()}${date.getMonth()+1}${date.getDate()}`
26
27
for (const version of versions) {
28
- const image = `ghcr.io/${process.env.IMAGE_NAME}-${baseImage}-${version}-${dateStr}`
+ const incusVersion = version.split(':')[1].split('-')[0] // 1:6.7-debian12-202411151825 -> 6.7
29
+ const image = `ghcr.io/${process.env.IMAGE_NAME}-${baseImage}-${incusVersion}-${dateStr}`
30
31
await $`docker buildx build --platform linux/amd64,linux/arm64 --build-arg BASE_IMAGE=${baseImage} --build-arg INCUS_VERSION=${version} -f ./debian-version/Dockerfile -t ${image} .`
32
0 commit comments