diff --git a/.forgejo/workflows/production.yaml b/.forgejo/workflows/production.yaml index 84a95484..9d506e41 100644 --- a/.forgejo/workflows/production.yaml +++ b/.forgejo/workflows/production.yaml @@ -10,8 +10,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 + REGISTRY: git.mcintire.me + IMAGE_NAME: graham/towerops jobs: test-exunit: @@ -157,9 +157,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