Skip to content

Commit 7b24526

Browse files
committed
Maybe fix
1 parent 27d9ca8 commit 7b24526

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/nextjs_bundle_analysis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,19 @@ jobs:
7373
# entry in your package.json file.
7474
- name: Compare with base branch bundle
7575
if: success() && github.event.number
76-
run: ls -laR beta/.next/analyze/base && npx -p nextjs-bundle-analysis compare
76+
run: ls -laR .next/analyze/base && npx -p nextjs-bundle-analysis compare
77+
working-directory: beta
7778

7879
- name: Get comment body
7980
id: get-comment-body
8081
if: success() && github.event.number
8182
run: |
82-
body=$(cat beta/.next/analyze/__bundle_analysis_comment.txt)
83+
body=$(cat .next/analyze/__bundle_analysis_comment.txt)
8384
body="${body//'%'/'%25'}"
8485
body="${body//$'\n'/'%0A'}"
8586
body="${body//$'\r'/'%0D'}"
8687
echo ::set-output name=body::$body
88+
working-directory: beta
8789

8890
- name: Find Comment
8991
uses: peter-evans/find-comment@v1

0 commit comments

Comments
 (0)