From 6a59a638be45497c12cccc160fd7f50ae834df57 Mon Sep 17 00:00:00 2001 From: Simon Schulze Date: Mon, 3 Feb 2025 08:52:49 +0100 Subject: [PATCH] use env variables for image name --- .github/workflows/dotnet_tag_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet_tag_release.yml b/.github/workflows/dotnet_tag_release.yml index fe7c75bf..b6f59414 100644 --- a/.github/workflows/dotnet_tag_release.yml +++ b/.github/workflows/dotnet_tag_release.yml @@ -66,7 +66,7 @@ jobs: id: meta uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 with: - images: sschulze1989/irleagueapicore.server + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image id: push @@ -81,6 +81,6 @@ jobs: - name: Generate artifact attestation uses: actions/attest-build-provenance@v2 with: - subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}} + subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} subject-digest: ${{ steps.push.outputs.digest }} push-to-registry: true