We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9325167 commit 9be1220Copy full SHA for 9be1220
.github/workflows/application-js-cloudflare-feature.yml
@@ -48,8 +48,8 @@ jobs:
48
run: |
49
delimiter="EOF-$(date +%s%N)"
50
while IFS= read -r line; do
51
- key="$(echo "$line" | cut -d'=' -f1)"
52
- json_value="$(echo "$line" | cut -d'=' -f2-)"
+ key="$(cut -d'=' -f1 <<< "$line")"
+ json_value="$(cut -d'=' -f2- <<< "$line")"
53
value="$(jq -r '.' <<< "$json_value")"
54
printf "$key<<$delimiter\n" >> $GITHUB_ENV
55
printf "$value\n" >> $GITHUB_ENV
0 commit comments