Fix CI
All checks were successful
Build & Push Docker / build-and-push (push) Successful in 36s

This commit is contained in:
Aiden
2026-05-10 12:54:06 +10:00
parent 4e2b4aba25
commit 7413501302

View File

@@ -48,8 +48,8 @@ jobs:
REPOSITORY: ${{ gitea.repository }}
run: |
set -euo pipefail
OWNER="${REPOSITORY%/*}"
REPO="${REPOSITORY#*/}"
OWNER="$(printf '%s' "${REPOSITORY%/*}" | tr '[:upper:]' '[:lower:]')"
REPO="$(printf '%s' "${REPOSITORY#*/}" | tr '[:upper:]' '[:lower:]')"
echo "IMAGE_LATEST=git.f-40.com/${OWNER}/${REPO}:latest" >> "$GITHUB_ENV"
echo "IMAGE_VERSIONED=git.f-40.com/${OWNER}/${REPO}:${OSC_VERSION}" >> "$GITHUB_ENV"