Migrate from codeberg.org to git.mcintire.me
All checks were successful
Build and Push / Build and Push Docker Image (push) Successful in 3m21s

This commit is contained in:
Graham McIntire 2026-07-24 14:23:22 -05:00
parent 56b4116f6f
commit 2a177676e5

View file

@ -10,8 +10,8 @@ on:
# REGISTRY_PASSWORD secrets so the registry can be rotated without
# editing every workflow file.
env:
REGISTRY: ${{ secrets.REGISTRY_URL }}
IMAGE_NAME: gmcintire/prop
REGISTRY: git.mcintire.me
IMAGE_NAME: graham/prop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
@ -92,9 +92,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