From b66bb342f157acde70ffed1be0c587a3e38aa249 Mon Sep 17 00:00:00 2001 From: Bill Plein <260078+bplein@users.noreply.github.com> Date: Wed, 15 Mar 2023 11:52:57 -0500 Subject: [PATCH] Update docker-publish-github.yml --- .github/workflows/docker-publish-github.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish-github.yml b/.github/workflows/docker-publish-github.yml index eeb1224..736bd37 100644 --- a/.github/workflows/docker-publish-github.yml +++ b/.github/workflows/docker-publish-github.yml @@ -69,8 +69,8 @@ jobs: - name: Extract all versions from buildinfo.json id: get-version run: | - VERSION=$(jq -r '.[] | .tags | select( index("latest"))|.[0]' buildinfo.json) - tags=$(jq -r '.[] | .tags | select( index("latest"))|.[0]' buildinfo.json) + VERSION=$(cat buildinfo.json | jq -r '.[] | .tags | select( index("latest"))|.[0]') + tags=$(cat buildinfo.json | jq -r '.[] | .tags | select( index("latest"))|.[0]') - name: Show versions run: | tags="${{ steps.get-version.outputs.value }}"