Migrate from codeberg.org to git.mcintire.me
Some checks are pending
Production Deployment / Run ExUnit Tests (push) Waiting to run
Production Deployment / Build and Push Docker Image (push) Blocked by required conditions
Build base image / Build and push base image (push) Successful in 1m2s

This commit is contained in:
Graham McIntire 2026-07-24 14:23:23 -05:00
parent dfb3dfd9e8
commit c243949045

View file

@ -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