try with explicit raw

This commit is contained in:
2022-11-01 21:52:58 +01:00
parent 2b84c86d45
commit d0cbba385d
2 changed files with 3 additions and 2 deletions

View File

@@ -23,7 +23,8 @@ const filtered = versions.sort(semver.rcompare).slice(0, 2)
function convert(version, additional = []) {
return {
version,
tags: [version, ...additional].join(';'),
// https://github.com/docker/metadata-action#typeraw
tags: [version, ...additional].map((t) => `type=raw,value=${t}`).join(';'),
}
}