Skip to content

Commit 9be1220

Browse files
committed
wip: remove old CI
1 parent 9325167 commit 9be1220

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/application-js-cloudflare-feature.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
run: |
4949
delimiter="EOF-$(date +%s%N)"
5050
while IFS= read -r line; do
51-
key="$(echo "$line" | cut -d'=' -f1)"
52-
json_value="$(echo "$line" | cut -d'=' -f2-)"
51+
key="$(cut -d'=' -f1 <<< "$line")"
52+
json_value="$(cut -d'=' -f2- <<< "$line")"
5353
value="$(jq -r '.' <<< "$json_value")"
5454
printf "$key<<$delimiter\n" >> $GITHUB_ENV
5555
printf "$value\n" >> $GITHUB_ENV

0 commit comments

Comments
 (0)