Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit a6efe40

Browse files
committed
ログを更新
1 parent 4087635 commit a6efe40

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ const tc = require("@actions/tool-cache");
5151
const url = `https://github.com/koki-develop/qiita-cli/releases/download/${version}/qiita_${platform}_${arch}.${ext}`;
5252
core.info(`Downloading... ${url}`);
5353
const cliPath = await tc.downloadTool(url);
54+
core.info(`Downloaded to ${cliPath}`);
5455

5556
core.info("Installing...");
5657
const extractedPath = await (async () => {
@@ -63,7 +64,7 @@ const tc = require("@actions/tool-cache");
6364
})();
6465
const binPath = await tc.cacheDir(extractedPath, "qiita", "0.1.0");
6566
core.addPath(binPath);
66-
core.info("Installed.");
67+
core.info(`Installed to ${binPath}`);
6768
})().catch((err) => {
6869
core.setFailed(err.message);
6970
});

0 commit comments

Comments
 (0)