From c243949045850c5baa5516237455182d3a2b9e52 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 24 Jul 2026 14:23:23 -0500 Subject: [PATCH] Migrate from codeberg.org to git.mcintire.me --- .forgejo/workflows/build-base.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build-base.yaml b/.forgejo/workflows/build-base.yaml index 5ed1ae8b..3edac9f0 100644 --- a/.forgejo/workflows/build-base.yaml +++ b/.forgejo/workflows/build-base.yaml @@ -27,8 +27,8 @@ on: # login URL is the hardcoded env.REGISTRY rather than secrets.REGISTRY_URL # so a stale URL secret can't push to the wrong registry. env: - REGISTRY: codeberg.org - IMAGE_NAME: gmcintire/towerops-base + REGISTRY: git.mcintire.me + IMAGE_NAME: graham/towerops-base concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -101,9 +101,9 @@ jobs: attempt=1 max_attempts=3 while : ; do - if echo "${{ secrets.REGISTRY_PASSWORD }}" | \ + if echo "${{ secrets.FORGEJO_TOKEN }}" | \ docker login "${{ env.REGISTRY }}" \ - -u "${{ secrets.REGISTRY_USER }}" \ + -u "graham" \ --password-stdin; then exit 0 fi