We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1a3c07 commit a764041Copy full SHA for a764041
index.js
@@ -31,13 +31,11 @@ async function install_cpm(install_to) {
31
const version = core.getInput("version");
32
const url = `https://raw.githubusercontent.com/skaji/cpm/${version}/cpm`;
33
34
- core.setOutput(`Get cpm from ${url}`);
+ console.log(`Get cpm from URL: ${url}`);
35
36
const cpmScript = await tc.downloadTool(url);
37
38
- core.setOutput("cpm", cpmScript);
39
-
40
- console.log(`install_to ${install_to}`);
+ console.log(`Installing cpm to: ${install_to}`);
41
42
const platform = os.platform();
43
//console.log(`OS: :${platform}:`);
0 commit comments