From a25af9c7b35388057fa640e635ebe7a0e6e9185b Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 24 Jul 2026 14:23:25 -0500 Subject: [PATCH] Migrate from codeberg.org to git.mcintire.me --- .forgejo/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 32cd5d0..47ae53d 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -26,9 +26,9 @@ jobs: - name: Log in to Container Registry uses: https://github.com/docker/login-action@v3 with: - registry: ${{ secrets.REGISTRY_URL }} - username: ${{ secrets.REGISTRY_USER }} - password: ${{ secrets.REGISTRY_PASSWORD }} + registry: git.mcintire.me + username: graham + password: ${{ secrets.FORGEJO_TOKEN }} - name: Extract version id: version @@ -43,8 +43,8 @@ jobs: build-args: | VERSION=${{ steps.version.outputs.tag }} tags: | - ${{ secrets.REGISTRY_URL }}/${{ github.repository }}:latest - ${{ secrets.REGISTRY_URL }}/${{ github.repository }}:${{ steps.version.outputs.tag }} + git.mcintire.me/${{ github.repository }}:latest + git.mcintire.me/${{ github.repository }}:${{ steps.version.outputs.tag }} - name: Run tests run: go test -race -v -count=1 -timeout 60s ./...