Skip to content

Commit

Permalink
fix(ci): escape backquote
Browse files Browse the repository at this point in the history
  • Loading branch information
nogic1008 committed Apr 12, 2023
1 parent a098688 commit 0740527
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ jobs:
id: compare
continue-on-error: true
run: |
echo "# Compare ${{ github.sha }} to main" >> $GITHUB_STEP_SUMMARY
echo "```diff" >> $GITHUB_STEP_SUMMARY
echo '# Compare ${{ github.sha }} to main' >> $GITHUB_STEP_SUMMARY
echo '```diff' >> $GITHUB_STEP_SUMMARY
git diff --no-index ./dist/ ./current/ >> $GITHUB_STEP_SUMMARY
echo "```" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
git diff --no-index --exit-code ./dist/ ./current/
- name: Report diff
Expand Down

0 comments on commit 0740527

Please sign in to comment.