try with newlinw

This commit is contained in:
cupcakearmy 2022-11-01 22:05:49 +01:00
parent bea16c129b
commit 9f7b912536
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ on:
workflow_dispatch:
push:
# schedule:
# - cron: 0 3 * * 1
# - cron: "0 3 * * 1"
# push:
# tags:
# - "v*.*.*"
@ -60,7 +60,7 @@ jobs:
cupcakearmy/static
ghcr.io/${{ github.repository }}
tags: ${{ matrix.tags }}
sep-tags: ","
# sep-tags: ","
- name: Build and push
id: docker_build

View File

@ -24,7 +24,7 @@ function convert(version, additional = []) {
return {
version,
// https://github.com/docker/metadata-action#typeraw
tags: [version, ...additional].join(','),
tags: [version, ...additional].join('\n'),
}
}