Skip to content

workflows: Retrieve the actual target image with tag #10705

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/staging-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -595,8 +595,10 @@ jobs:
TAG: ${{ matrix.tag }}
shell: bash

# Pulling the actual image with tag is needed here.
- name: Promote container images from staging to GHCR.io
run: |
docker pull "$STAGING_IMAGE_NAME:$TAG"
docker tag "$STAGING_IMAGE_NAME:$TAG" "$RELEASE_IMAGE_NAME:$TAG"
docker push "$RELEASE_IMAGE_NAME:$TAG"
env:
Expand Down
Loading