diff --git a/dist/post/index.js b/dist/post/index.js index fd8c333..d09e10e 100644 --- a/dist/post/index.js +++ b/dist/post/index.js @@ -3997,8 +3997,8 @@ const core = __importStar(__nccwpck_require__(186)); const exec_1 = __nccwpck_require__(514); function guardedRun() { return __awaiter(this, void 0, void 0, function* () { - core.debug("Gathering statistics"); - (0, exec_1.exec)("sccache", ["--show-stats"]); + core.debug("Stopping server and gathering statistics"); + (0, exec_1.exec)("sccache", ["--stop-server"]); }); } function run() { diff --git a/src/post.ts b/src/post.ts index 7b3d479..ae46a60 100644 --- a/src/post.ts +++ b/src/post.ts @@ -2,8 +2,8 @@ import * as core from "@actions/core"; import { exec } from "@actions/exec"; async function guardedRun(): Promise { - core.debug("Gathering statistics"); - exec("sccache", ["--show-stats"]); + core.debug("Stopping server and gathering statistics"); + exec("sccache", ["--stop-server"]); } async function run(): Promise {