1
0
Fork 0

Fix build

This commit is contained in:
Joao M 2022-08-21 00:40:08 +00:00
parent af03325bd2
commit eb5f7e313f
3 changed files with 3 additions and 20 deletions

View file

@ -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);