From 0f4f1765a213924ec09f4dce92ef27440becfe24 Mon Sep 17 00:00:00 2001 From: Donkie Date: Mon, 10 Jul 2023 17:09:58 +0200 Subject: [PATCH] Lowercase image name --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af6e3a0..2771480 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ on: env: REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} + IMAGE_NAME: donkie/spoolman jobs: # @@ -57,7 +57,7 @@ jobs: uses: docker/build-push-action@v4 with: context: . - tags: donkie/spoolman:test + tags: ${{ env.IMAGE_NAME }}:test outputs: type=docker,dest=/tmp/spoolman.tar cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache,mode=max @@ -90,7 +90,7 @@ jobs: uses: docker/build-push-action@v4 with: context: ./tests_integration - tags: donkie/spoolman-tester:latest + tags: ${{ env.IMAGE_NAME }}-tester:latest outputs: type=docker,dest=/tmp/spoolman-tester.tar cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache,mode=max