Skip to content

Commit

Permalink
use EOF
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 9, 2025
1 parent 1c2bf07 commit b9883b8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
--filter ".+\/dist\/dev\/index.js$" \
--no-percent-bars --only-dir --depth 1 > out.txt
echo "sizes="$(cat out.txt)" >> $GITHUB_OUTPUT
echo 'sizes<<EOF' >> $GITHUB_OUTPUT
echo $(cat out.txt) >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: "Get sizes for production outputs"
id: dev
Expand All @@ -44,7 +46,9 @@ jobs:
--filter ".+\/dist\/prod\/index.js$" \
--no-percent-bars --only-dir --depth 1 > out.txt
echo "sizes="$(cat out.txt)" >> $GITHUB_OUTPUT
echo 'sizes<<EOF' >> $GITHUB_OUTPUT
echo $(cat out.txt) >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- uses: mshick/add-pr-comment@v2
with:
Expand Down

0 comments on commit b9883b8

Please sign in to comment.