From a988c49ae0a1f46174d66b67334f2c029a91dcd8 Mon Sep 17 00:00:00 2001 From: songtianlun Date: Wed, 22 Jan 2025 09:07:52 +0800 Subject: [PATCH] chore: update docker tags formatting - Change Docker tags configuration to be multiline - Improve clarity and maintainability of the workflow This change enhances the readability of the tags in the Docker workflow, facilitating easier updates and understanding of the tagging process. --- .github/workflows/docker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 99318e6..253b5b9 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -50,4 +50,6 @@ jobs: with: context: . push: ${{ github.event_name != 'pull_request' }} - tags: ${{ env.LATEST_TAG }},${{ env.VERSION_TAG }} + tags: | + ${{ env.LATEST_TAG }} + ${{ env.VERSION_TAG }}