From bea16c129b18104df16606712c61dcd7243efe00 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Tue, 1 Nov 2022 22:01:36 +0100 Subject: [PATCH] try with comma --- .github/workflows/trial.yml | 4 +++- tags/index.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trial.yml b/.github/workflows/trial.yml index 80e4404..cc9e2a9 100644 --- a/.github/workflows/trial.yml +++ b/.github/workflows/trial.yml @@ -3,6 +3,8 @@ name: trial on: workflow_dispatch: push: + # schedule: + # - cron: 0 3 * * 1 # push: # tags: # - "v*.*.*" @@ -58,7 +60,7 @@ jobs: cupcakearmy/static ghcr.io/${{ github.repository }} tags: ${{ matrix.tags }} - sep-tags: ";" + sep-tags: "," - name: Build and push id: docker_build diff --git a/tags/index.js b/tags/index.js index 0534d69..11ecb3f 100644 --- a/tags/index.js +++ b/tags/index.js @@ -24,7 +24,7 @@ function convert(version, additional = []) { return { version, // https://github.com/docker/metadata-action#typeraw - tags: [version, ...additional].map((t) => `type=raw,value=${t}`).join(';'), + tags: [version, ...additional].join(','), } }