From 5ea76c010ec399f3c818a31ce39db45ebb8b0eae Mon Sep 17 00:00:00 2001 From: Amin Vakil Date: Sun, 22 Dec 2024 14:03:22 +0330 Subject: [PATCH] Lowercase image_name --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e035ee3..4b201a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,6 @@ jobs: runs-on: ubuntu-latest env: REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} permissions: contents: read packages: write @@ -64,6 +63,10 @@ jobs: - name: Check out the codebase. uses: actions/checkout@main + - name: Set IMAGE_NAME env as github_repository lower-case + run: | + echo IMAGE_NAME=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV + - name: Log in to the Container registry uses: docker/login-action@master with: