From 481157803ba6e004c8280d9630e4294163e91bbb Mon Sep 17 00:00:00 2001 From: Tino Hager Date: Thu, 22 Feb 2024 23:12:18 +0100 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e17257a..47a0853 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,11 +72,11 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: downcase GITHUB_REPOSITORY run: | - echo "REPOSITORY_LOWERCASE=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV} + echo "REPOSITORY_LOWERCASE=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV} - name: Build and push uses: docker/build-push-action@v5 with: context: . file: ./src/Dockerfile push: true - tags: ghcr.io/nager/${{REPOSITORY_LOWERCASE}}:latest + tags: ghcr.io/nager/${{ env.REPOSITORY_LOWERCASE }}:latest