mirror of
https://github.com/cupcakearmy/docker-static.git
synced 2024-12-21 15:56:30 +00:00
try with explicit raw
This commit is contained in:
parent
2b84c86d45
commit
d0cbba385d
2
.github/workflows/trial.yml
vendored
2
.github/workflows/trial.yml
vendored
@ -55,7 +55,7 @@ jobs:
|
||||
uses: docker/metadata-action@v4
|
||||
with:
|
||||
images: |
|
||||
cupcakearmy/breitbandbot
|
||||
cupcakearmy/static
|
||||
ghcr.io/${{ github.repository }}
|
||||
tags: ${{ matrix.tags }}
|
||||
sep-tags: ";"
|
||||
|
@ -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(';'),
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user