fix: normalize repository name to lowercase in deployment workflow

This commit is contained in:
Asep Haryana Saputra
2026-05-22 21:40:42 +00:00
parent a0f9d307fd
commit a94fb50225
3 changed files with 384 additions and 3 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_PREFIX: ghcr.io/${{ github.repository }}
IMAGE_PREFIX: ghcr.io/${{ toLower(github.repository) }}
jobs:
build:
@@ -101,7 +101,7 @@ jobs:
git pull --ff-only origin main
cat > .env << 'ENVEOF'
GITHUB_REPOSITORY=${{ github.repository }}
GITHUB_REPOSITORY=${{ toLower(github.repository) }}
DATABASE_URL=${{ secrets.DATABASE_URL }}
SESSION_SECRET=${{ secrets.SESSION_SECRET }}
WEB_APP_URL=https://zeavisedu.asepharyana.tech