hardcoded host
Some checks failed
Build & Push Docker Images / build (push) Failing after 5s

This commit is contained in:
Thomas Faour 2025-08-11 18:37:17 -04:00
parent d13334f253
commit 756283a069

View File

@ -107,7 +107,7 @@ jobs:
run: |
set -euo pipefail
for IMG in ${BACKEND_IMAGE} ${FRONTEND_IMAGE}; do
BASE="${{ steps.repo.outputs.host }}/${{ steps.repo.outputs.owner }}/${IMG}"
BASE="git.thumeit.com/${{ steps.repo.outputs.owner }}/${IMG}"
docker push ${BASE}:${{ steps.meta.outputs.sha_tag }}
[ -n "${{ steps.meta.outputs.latest_tag }}" ] && docker push ${BASE}:latest || true
[ -n "${{ steps.meta.outputs.version_tag }}" ] && docker push ${BASE}:${{ steps.meta.outputs.version_tag }} || true