diff --git a/.github/workflows/umamiReport.yml b/.github/workflows/umamiReport.yml index 97cf685..19b7413 100644 --- a/.github/workflows/umamiReport.yml +++ b/.github/workflows/umamiReport.yml @@ -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 }}" diff --git a/lib/action.js b/lib/action.js index cc8d51e..d99c044 100644 --- a/lib/action.js +++ b/lib/action.js @@ -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 } }