Skip to content

Commit

Permalink
ci: fix reading build-args
Browse files Browse the repository at this point in the history
  • Loading branch information
grixu committed Oct 22, 2024
1 parent 2d4b6bd commit a4dbc2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-frontend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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) }}
2 changes: 1 addition & 1 deletion build-middleware/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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) }}

0 comments on commit a4dbc2a

Please sign in to comment.