Skip to content

Commit 6a67800

Browse files
update build workflow to conditionally enable services based on image_json input
1 parent 58545ae commit 6a67800

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ jobs:
332332
tag: ${{ fromJSON(needs.setup.outputs.images).*.tag }}
333333
arch: ${{ inputs.image_json && fromJSON('["amd64"]') || fromJSON('["amd64", "arm64"]') }}
334334
network: ["local"]
335-
enable: ["core", "rpc", "core,rpc,horizon"]
335+
enable: ${{ inputs.image_json && fromJSON('["core,rpc,horizon"]') || fromJSON('["core","rpc","core,rpc,horizon"]') }}
336336
options: [""]
337337
include: ${{ fromJSON(needs.setup.outputs.additional-tests) }}
338338
fail-fast: false

0 commit comments

Comments
 (0)