fix(docker): streamline tag format for latest image
Some checks failed
Docker CI/CD / Docker Build and Push (push) Failing after 5m59s

Removed a duplicate and unnecessary line specifying the `latest` tag for the docker image in the workflow. This change simplifies the tag specification process, avoiding redundancy, and ensuring clear declaration of both the `latest` and SHA-specific tags for our docker images in CI/CD pipelines.
This commit is contained in:
Kumi 2024-04-23 10:52:09 +02:00
parent c94c016cf1
commit 5bc6344fdf
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -42,7 +42,5 @@ jobs:
with: with:
push: true push: true
tags: | tags: |
git.private.coffee/privatecoffee/matrix-gptbot:latest
|
git.private.coffee/privatecoffee/matrix-gptbot:latest git.private.coffee/privatecoffee/matrix-gptbot:latest
git.private.coffee/privatecoffee/matrix-gptbot:${{ env.GITHUB_SHA }} git.private.coffee/privatecoffee/matrix-gptbot:${{ env.GITHUB_SHA }}