File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,15 @@ jobs:
2323 steps :
2424 - name : Print debug
2525 run : |
26- echo ${{ inputs.changed }}
27- echo ${{ join(fromJSON(inputs.changed), ' ') }}
28- echo ${{ join(fromJSON(inputs.changed)['hello-world'].unikraft, '') }}
26+ echo "${{ inputs.changed }}"
27+ echo "${{ fromJSON(inputs.changed) }}"
28+ echo "${{ fromJSON(inputs.changed)['hello-world'].unikraft }}"
29+ echo "${{ fromJSON(inputs.changed).hello-world.unikraft }}"
2930
3031 - name : Print debug
3132 run : |
3233 echo ${{ join(fromJSON(inputs.changed), ' ') }}
33- echo ${{ join (fromJSON(inputs.changed.hello-world), ' ') }}
34+ echo ${{ (fromJSON(inputs.changed.hello-world), ' ') }}
3435 echo ${{ join(fromJSON(inputs.changed)['hello-world'].unikraft, '') }}
3536
3637 build-image-amd64 :
You can’t perform that action at this time.
0 commit comments