fix: core.debug

This commit is contained in:
peaceiris 2019-09-16 04:39:56 +09:00
parent 8b02a56ca6
commit 053422e2e1

View file

@ -9,15 +9,18 @@ async function run() {
try { try {
let hugoVersion = core.getInput("hugo-version"); let hugoVersion = core.getInput("hugo-version");
if (!hugoVersion || hugoVersion === "latest") { if (!hugoVersion || hugoVersion === "latest") {
hugoVersion = getLatestVersion(); hugoVersion = "0.58.2";
getLatestVersion().then(function(version) {
console.log(version);
});
} }
core.debug("Hugo version:", hugoVersion); core.debug(`Hugo version: ${hugoVersion}`);
let extended = core.getInput("extended"); let extended = core.getInput("extended");
if (!extended) { if (!extended) {
extended = false; extended = false;
} }
core.debug("Hugo extended:", extended); core.debug(`Hugo extended: ${extended}`);
let extendedStr = ""; let extendedStr = "";
if (extended) { if (extended) {
@ -25,10 +28,10 @@ async function run() {
} }
const hugoName = `hugo_${extendedStr}${hugoVersion}_Linux-64bit`; const hugoName = `hugo_${extendedStr}${hugoVersion}_Linux-64bit`;
core.debug("hugoName:", hugoName); core.debug(`hugoName: ${hugoName}`);
const hugoURL = `https://github.com/gohugoio/hugo/releases/download/v${hugoVersion}/${hugoName}.tar.gz`; const hugoURL = `https://github.com/gohugoio/hugo/releases/download/v${hugoVersion}/${hugoName}.tar.gz`;
core.debug("hugoURL:", hugoURL); core.debug(`hugoURL: ${hugoURL}`);
const hugoPath = "/usr/local/bin"; const hugoPath = "/usr/local/bin";
await io.mkdirP(hugoPath); await io.mkdirP(hugoPath);