From a4dbc2a704db6936012180d8b3fe569b46873543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gosta=C5=84ski?= Date: Tue, 22 Oct 2024 15:12:04 +0200 Subject: [PATCH] ci: fix reading build-args --- build-frontend/action.yml | 2 +- build-middleware/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-frontend/action.yml b/build-frontend/action.yml index d1d595d..1882d7e 100644 --- a/build-frontend/action.yml +++ b/build-frontend/action.yml @@ -126,4 +126,4 @@ runs: tags: ${{ steps.resolve.outputs.ref }}/vue-storefront:${{ steps.resolve.outputs.version }} cache-from: "type=registry,ref=${{ steps.resolve.outputs.ref }}/vue-storefront:buildcache" cache-to: "type=registry,ref=${{ steps.resolve.outputs.ref }}/vue-storefront:buildcache,mode=max" - build-args: ${{ steps.resolve.outputs.docker_args }} + build-args: ${{ fromJson(steps.resolve.outputs.docker_args) }} diff --git a/build-middleware/action.yml b/build-middleware/action.yml index d88dacc..7fb4558 100644 --- a/build-middleware/action.yml +++ b/build-middleware/action.yml @@ -102,4 +102,4 @@ runs: tags: ${{ steps.resolve.outputs.ref }}/vue-storefront-middleware:${{ steps.resolve.outputs.version }} cache-from: "type=registry,ref=${{ steps.resolve.outputs.ref }}/vue-storefront-middleware:buildcache" cache-to: "type=registry,ref=${{ steps.resolve.outputs.ref }}/vue-storefront-middleware:buildcache,mode=max" - build-args: ${{ steps.resolve.outputs.docker_args }} + build-args: ${{ fromJson(steps.resolve.outputs.docker_args) }}