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 56973bb commit f7a15dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ jobs:
--filter ".+\/dist\/dev\/index.js$" \
--no-percent-bars --only-dir --depth 1)
echo -e $sizes
echo 'foo<<EOF' >> $GITHUB_OUTPUT
echo $sizes >> $GITHUB_OUTPUT
echo -e $sizes >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: "Get sizes for production outputs"
Expand All @@ -46,8 +47,9 @@ jobs:
--filter ".+\/dist\/prod\/index.js$" \
--no-percent-bars --only-dir --depth 1)
echo -e $sizes
echo 'foo<<EOF' >> $GITHUB_OUTPUT
echo $sizes >> $GITHUB_OUTPUT
echo -e $sizes >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- uses: mshick/add-pr-comment@v2
Expand Down

0 comments on commit f7a15dd

Please sign in to comment.