diff --git a/.gitea/workflows/image-publish.yml b/.gitea/workflows/image-publish.yml index a48f112..f2174b9 100644 --- a/.gitea/workflows/image-publish.yml +++ b/.gitea/workflows/image-publish.yml @@ -64,8 +64,19 @@ jobs: -t "$full_image:$SHORT_SHA" \ -t "$full_image:$BUILD_DATE" \ . - + + echo "========================================" + echo "Pushing: $full_image" + echo "Dockerfile: $dockerfile" + echo "========================================" + echo "Pushing: latest" docker push "$full_image:latest" + echo "Pushed: latest" + echo "Pushing: $SHORT_SHA" docker push "$full_image:$SHORT_SHA" + echo "Pushed: $SHORT_SHA" + echo "Pushing: $BUILD_DATE" docker push "$full_image:$BUILD_DATE" + echo "Pushed: $BUILD_DATE" + done \ No newline at end of file