chore: repoint registry.breakpilot.com -> repo.breakpilot.com (Harbor)
ci / test (pull_request) Successful in 10m16s
ci / image (pull_request) Skipped
ci / shared (pull_request) Failing after 12s
ci / e2e (pull_request) Canceled after 0s

Consolidate the platform on Harbor (repo.breakpilot.com/breakpilot/*), the
authoritative registry. registry.breakpilot.com (never-built stage registry) is
retired. NOTE: verify REGISTRY_USER/REGISTRY_PASS hold valid Harbor push creds.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Sharang Parnerkar
2026-08-09 22:58:29 +02:00
co-authored by Claude Opus 4.8
parent 329cc0e57a
commit 5c0d62d58b
+3 -3
View File
@@ -22,7 +22,7 @@ jobs:
- name: verify stage soak (>= 24h on this image) - name: verify stage soak (>= 24h on this image)
run: | run: |
IMG=registry.breakpilot.com/${{ github.event.repository.name }}:env-stage IMG=repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:env-stage
SOAK_SECONDS=$(orca image-age --env=stage --image $IMG) SOAK_SECONDS=$(orca image-age --env=stage --image $IMG)
if [ "$SOAK_SECONDS" -lt 86400 ]; then if [ "$SOAK_SECONDS" -lt 86400 ]; then
echo "Stage soak only $SOAK_SECONDS s, < 24h. Aborting." echo "Stage soak only $SOAK_SECONDS s, < 24h. Aborting."
@@ -34,12 +34,12 @@ jobs:
- name: re-tag image as semver + env-prod - name: re-tag image as semver + env-prod
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: registry.breakpilot.com registry: repo.breakpilot.com
username: ${{ secrets.REGISTRY_USER }} username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASS }} password: ${{ secrets.REGISTRY_PASS }}
- run: | - run: |
IMG=registry.breakpilot.com/${{ github.event.repository.name }} IMG=repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}
docker pull $IMG:env-stage docker pull $IMG:env-stage
docker tag $IMG:env-stage $IMG:v${{ steps.v.outputs.version }} docker tag $IMG:env-stage $IMG:v${{ steps.v.outputs.version }}
docker tag $IMG:env-stage $IMG:env-prod docker tag $IMG:env-stage $IMG:env-prod