From 0d9d97207357760d5a2e1cea13d4324909bda736 Mon Sep 17 00:00:00 2001 From: Sharang Parnerkar Date: Sun, 9 Aug 2026 21:22:13 +0000 Subject: [PATCH] Repoint registry.breakpilot.com -> repo.breakpilot.com (Harbor) (#5) --- .gitea/workflows/ci.yaml | 8 ++++---- .gitea/workflows/release.yaml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index b377045..ddb33c6 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -104,18 +104,18 @@ jobs: - uses: actions/checkout@v4 - uses: docker/login-action@v3 with: - registry: registry.breakpilot.com + registry: repo.breakpilot.com username: ${{ secrets.REGISTRY_USER }} password: ${{ secrets.REGISTRY_PASS }} - uses: docker/build-push-action@v6 with: push: true tags: | - registry.breakpilot.com/${{ github.event.repository.name }}:sha-${{ github.sha }} - registry.breakpilot.com/${{ github.event.repository.name }}:env-stage + repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:sha-${{ github.sha }} + repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:env-stage - uses: anchore/sbom-action@v0 with: - image: registry.breakpilot.com/${{ github.event.repository.name }}:sha-${{ github.sha }} + image: repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:sha-${{ github.sha }} - run: orca apply --env=stage --image-tag=sha-${{ github.sha }} env: ORCA_TOKEN: ${{ secrets.ORCA_STAGE_TOKEN }} diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 64565a8..06ae9fc 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -22,7 +22,7 @@ jobs: - name: verify stage soak (>= 24h on this image) 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) if [ "$SOAK_SECONDS" -lt 86400 ]; then echo "Stage soak only $SOAK_SECONDS s, < 24h. Aborting." @@ -34,12 +34,12 @@ jobs: - name: re-tag image as semver + env-prod uses: docker/login-action@v3 with: - registry: registry.breakpilot.com + registry: repo.breakpilot.com username: ${{ secrets.REGISTRY_USER }} password: ${{ secrets.REGISTRY_PASS }} - run: | - IMG=registry.breakpilot.com/${{ github.event.repository.name }} + IMG=repo.breakpilot.com/breakpilot/${{ github.event.repository.name }} docker pull $IMG:env-stage docker tag $IMG:env-stage $IMG:v${{ steps.v.outputs.version }} docker tag $IMG:env-stage $IMG:env-prod