Skip to content

Commit

Permalink
fix console, add ls
Browse files Browse the repository at this point in the history
  • Loading branch information
boly38 committed Jul 7, 2022
1 parent 09a75ee commit 37f7f6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/umamiReport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@ jobs:
color: "#48f442"
username: "umami report"
message: ${{ env.umamiOneLineReport }}

- name: Have a look at generated file
run: |
echo ${{ env.umamiReportFile }}"
ls -la ${{ env.umamiReportFile }}"
2 changes: 1 addition & 1 deletion lib/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Action {

DEBUG_ACTION && console.log(site);
DEBUG_ACTION && console.log(siteStats);
const { targetFile } = await Action.produceReport(site, siteStats, outputFile);
const targetFile = await Action.produceReport(site, siteStats, outputFile);
if (targetFile != null) {
return { site, siteStats, targetFile }
}
Expand Down

0 comments on commit 37f7f6e

Please sign in to comment.