Skip to content

Commit f7a6913

Browse files
committed
handle json fmt
1 parent a3d9c7e commit f7a6913

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/rpc_healthcheck.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ jobs:
2727
id: read
2828
env:
2929
TARGETS: ${{ secrets.RPC_HEALTHCHECK_TARGETS_JSON }}
30-
run: echo "targets=$TARGETS" >> "$GITHUB_OUTPUT"
30+
run: |
31+
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
32+
echo "targets<<$EOF" >> "$GITHUB_OUTPUT"
33+
echo "$TARGETS" >> "$GITHUB_OUTPUT"
34+
echo "$EOF" >> "$GITHUB_OUTPUT"
3135
3236
check-networkinfo:
3337
name: Check ${{ matrix.name }} networkInfo

0 commit comments

Comments
 (0)