Fix build
This commit is contained in:
parent
af03325bd2
commit
eb5f7e313f
3 changed files with 3 additions and 20 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -66,9 +66,9 @@ jobs:
|
|||
id: tags
|
||||
with:
|
||||
script: |
|
||||
tags = "${{ join(steps.meta.outputs.tags, ',') }}"
|
||||
tags = `${{ join(steps.meta.outputs.tags, ',') }}`
|
||||
result = []
|
||||
tags.split(",").forEach(function (item) {
|
||||
tags.split("\n").forEach(function (item) {
|
||||
short_tag = item.trim().split(":")[1];
|
||||
if (short_tag != "latest") {
|
||||
result.push(short_tag);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue