Fix registry URL assignment in workflow file

This commit is contained in:
2025-11-20 11:28:44 -08:00
committed by GitHub
parent 0f5c7f51db
commit 305e49de09

View File

@@ -13,7 +13,7 @@ on:
env:
# This works for both GitHub and Gitea
REGISTRY: ${{ github.server_url == 'https://github.com' && 'ghcr.io' || format('{0}/v2', github.server_url) }}
REGISTRY: ${{ github.server_url == 'https://github.com' && 'ghcr.io' || github.server_url }}
IMAGE_NAME: ${{ github.repository }}
jobs: