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 # REGISTRY_PASSWORD secrets so the registry can be rotated without
# editing every workflow file. # editing every workflow file.
env: env:
REGISTRY: ${{ secrets.REGISTRY_URL }} REGISTRY: git.mcintire.me
IMAGE_NAME: gmcintire/prop IMAGE_NAME: graham/prop
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.ref }} group: ${{ github.workflow }}-${{ github.ref }}
@ -92,9 +92,9 @@ jobs:
attempt=1 attempt=1
max_attempts=3 max_attempts=3
while : ; do while : ; do
if echo "${{ secrets.REGISTRY_PASSWORD }}" | \ if echo "${{ secrets.FORGEJO_TOKEN }}" | \
docker login "${{ env.REGISTRY }}" \ docker login "${{ env.REGISTRY }}" \
-u "${{ secrets.REGISTRY_USER }}" \ -u "graham" \
--password-stdin; then --password-stdin; then
exit 0 exit 0
fi fi