mirror of https://github.com/astral-sh/uv
Skip DockerHub annotations too (#15366)
This commit is contained in:
parent
f77d78a8ad
commit
36151df0e4
|
|
@ -283,6 +283,7 @@ jobs:
|
||||||
images: |
|
images: |
|
||||||
${{ env.UV_GHCR_IMAGE }}
|
${{ env.UV_GHCR_IMAGE }}
|
||||||
# We are temporarily not publishing the extra images to DockerHub
|
# We are temporarily not publishing the extra images to DockerHub
|
||||||
|
# TODO(zanieb): Restore DockerHub support. See also, "Add annotations to images".
|
||||||
# ${{ env.UV_DOCKERHUB_IMAGE }}
|
# ${{ env.UV_DOCKERHUB_IMAGE }}
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=false
|
latest=false
|
||||||
|
|
@ -314,7 +315,9 @@ jobs:
|
||||||
- name: Add annotations to images
|
- name: Add annotations to images
|
||||||
if: ${{ needs.docker-plan.outputs.push == 'true' }}
|
if: ${{ needs.docker-plan.outputs.push == 'true' }}
|
||||||
env:
|
env:
|
||||||
IMAGES: "${{ env.UV_GHCR_IMAGE }} ${{ env.UV_DOCKERHUB_IMAGE }}"
|
IMAGES: "${{ env.UV_GHCR_IMAGE }}"
|
||||||
|
# TODO(zanieb): Restore DockerHub support.
|
||||||
|
# IMAGES: "${{ env.UV_GHCR_IMAGE }} ${{ env.UV_DOCKERHUB_IMAGE }}"
|
||||||
DIGEST: ${{ steps.build-and-push.outputs.digest }}
|
DIGEST: ${{ steps.build-and-push.outputs.digest }}
|
||||||
TAGS: ${{ steps.meta.outputs.tags }}
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
ANNOTATIONS: ${{ steps.meta.outputs.annotations }}
|
ANNOTATIONS: ${{ steps.meta.outputs.annotations }}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue