Skip to content

Commit 06b39db

Browse files
committed
wip: remove old CI
1 parent 0e2e664 commit 06b39db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
- name: Debug Something
4848
run: |
49-
delimiter="EOF"
49+
delimiter="EOF-$(date +%s%N)"
5050
while IFS= read -r line; do
5151
if [ -z "$line" ]; then
5252
continue
@@ -55,9 +55,9 @@ jobs:
5555
json_value="$(cut -d'=' -f2- <<< "$line")"
5656
value="$(jq -r '.' <<< "$json_value")"
5757
{
58-
echo "$key<<EOF"
59-
echo "$value"
60-
echo "EOF"
58+
printf "$key<<$delimiter\n"
59+
printf "$value\n"
60+
printf "$delimiter\n"
6161
} >> "$GITHUB_ENV"
6262
done <<< "$DEPLOY_SECRETS"
6363
- name: Next Part

0 commit comments

Comments
 (0)