diff options
author | Samuel Maynard <samwmaynard@gmail.com> | 2023-12-23 11:35:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-23 11:35:55 +0200 |
commit | 925e5584a058afb612f9c20bc472c130f5d0f891 (patch) | |
tree | a5342687ec96bbb0716b535d3a80f214b57cd8ed | |
parent | 6123979952385847d8348e295d77d6e01da8aa84 (diff) |
ci(docker): fix tags in "Build and push docker image (tagged)" (#4603)
-rw-r--r-- | .github/workflows/docker.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7f4de50e..87904b75 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -98,5 +98,5 @@ jobs: context: . push: ${{ github.event_name == 'push' }} platforms: ${{ matrix.config.platforms }} - tags: "ghcr.io/${{ github.repository_owner }}/llama.cpp:${{ matrix.config.tag }}" , "ghcr.io/${{ github.repository_owner }}/llama.cpp:${{ matrix.config.tag }}-${{ steps.tag.outputs.name }}" + tags: "ghcr.io/${{ github.repository_owner }}/llama.cpp:${{ matrix.config.tag }},ghcr.io/${{ github.repository_owner }}/llama.cpp:${{ matrix.config.tag }}-${{ steps.tag.outputs.name }}" file: ${{ matrix.config.dockerfile }} |