From 26e11631078f72d9d4d1fc8066e86590bf15771b Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 24 Jul 2026 14:23:20 -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 eb5eb343..7a054ab7 100644 --- a/.forgejo/workflows/build-base.yaml +++ b/.forgejo/workflows/build-base.yaml @@ -26,8 +26,8 @@ on: # and creds are sourced from the shared REGISTRY_URL / REGISTRY_USER # / REGISTRY_PASSWORD secrets. env: - REGISTRY: ${{ secrets.REGISTRY_URL }} - IMAGE_NAME: gmcintire/prop-base + REGISTRY: git.mcintire.me + IMAGE_NAME: graham/prop-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