From c03b345531fa478b23efeb641836130a042f0339 Mon Sep 17 00:00:00 2001 From: Grzegorz Matoga Date: Thu, 24 Jul 2025 22:41:57 +0200 Subject: [PATCH] refactor: consolidate Docker image tags into a single line for clarity --- .gitea/workflows/build-and-push.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/build-and-push.yaml b/.gitea/workflows/build-and-push.yaml index c5c9c2d..80462ca 100644 --- a/.gitea/workflows/build-and-push.yaml +++ b/.gitea/workflows/build-and-push.yaml @@ -37,9 +37,7 @@ jobs: with: context: . push: true - tags: | - git.eurekin.pl/${{ gitea.repository_owner }}/hello-gitea:latest - git.eurekin.pl/${{ gitea.repository_owner }}/hello-gitea:${{ gitea.sha }} + tags: git.eurekin.pl/${{ gitea.repository_owner }}/hello-gitea:latest,git.eurekin.pl/${{ gitea.repository_owner }}/hello-gitea:${{ gitea.sha }} - run: echo "📦 Docker image has been pushed to the registry!" - run: echo "🎯 You can pull it with: docker pull git.eurekin.pl/${{ gitea.repository_owner }}/hello-gitea:latest"