From 455c25c08f3a132c8b86ff77f17351effb3ae7f8 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Sun, 10 Oct 2021 08:53:12 +0530 Subject: [PATCH] fix: var access in release action --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 92dd1b4..6250bfb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -71,4 +71,4 @@ jobs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: | - VERSION=${{ steps.meta.outputs.labels["org.opencontainers.image.version"] }} + VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}