Migrate from codeberg.org to git.mcintire.me
Some checks are pending
Build prop-grid-rs / Test, build, push (push) Waiting to run
Build and Push / Build and Push Docker Image (push) Waiting to run
Build base image / Build and push base image (push) Successful in 4m35s

This commit is contained in:
Graham McIntire 2026-07-24 14:23:20 -05:00
parent 51678e0fb9
commit 26e1163107

View file

@ -26,8 +26,8 @@ on:
# and creds are sourced from the shared REGISTRY_URL / REGISTRY_USER # and creds are sourced from the shared REGISTRY_URL / REGISTRY_USER
# / REGISTRY_PASSWORD secrets. # / REGISTRY_PASSWORD secrets.
env: env:
REGISTRY: ${{ secrets.REGISTRY_URL }} REGISTRY: git.mcintire.me
IMAGE_NAME: gmcintire/prop-base IMAGE_NAME: graham/prop-base
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.ref }} group: ${{ github.workflow }}-${{ github.ref }}
@ -101,9 +101,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