From 193f10db77eef024ce670c8d5e4ed9a83e4988ff Mon Sep 17 00:00:00 2001 From: digorgonzola <29941279+digorgonzola@users.noreply.github.com> Date: Tue, 12 Dec 2023 07:39:54 +1100 Subject: [PATCH] deploy-production.yml: fix up reference to tags --- .github/workflows/deploy-production.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 93b6ebc..653e69f 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -31,8 +31,10 @@ jobs: - name: Get Image Metadata from Release uses: dsaltares/fetch-gh-release-asset@master + env: + tag_ref: tags/${{ github.ref_name }} with: - version: ${{ github.event.release.id || github.ref_name }} + version: ${{ github.event.release.id || env.tag_ref }} file: metadata.json - name: Set Image Digest from Metadata