Skip to content

Commit 1c2bf07

Browse files
committed
use EOF
1 parent e30163c commit 1c2bf07

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/size.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ jobs:
3333
--filter ".+\/dist\/dev\/index.js$" \
3434
--no-percent-bars --only-dir --depth 1 > out.txt
3535
36-
echo 'foo<<EOF' >> $GITHUB_OUTPUT
37-
echo -e "sizes="$(cat out.txt)" >> $GITHUB_OUTPUT
38-
echo 'EOF' >> $GITHUB_OUTPUT
36+
echo "sizes="$(cat out.txt)" >> $GITHUB_OUTPUT
3937
4038
- name: "Get sizes for production outputs"
4139
id: dev
@@ -46,9 +44,7 @@ jobs:
4644
--filter ".+\/dist\/prod\/index.js$" \
4745
--no-percent-bars --only-dir --depth 1 > out.txt
4846
49-
echo 'foo<<EOF' >> $GITHUB_OUTPUT
50-
echo -e "sizes="$(cat out.txt)" >> $GITHUB_OUTPUT
51-
echo 'EOF' >> $GITHUB_OUTPUT
47+
echo "sizes="$(cat out.txt)" >> $GITHUB_OUTPUT
5248
5349
- uses: mshick/add-pr-comment@v2
5450
with:

0 commit comments

Comments
 (0)