53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
const core = require('@actions/core');
|
|
// const exec = require('@actions/exec');
|
|
const tc = require('@actions/tool-cache');
|
|
const io = require('@actions/io');
|
|
// const wait = require('./wait');
|
|
|
|
|
|
// most @actions toolkit packages have async methods
|
|
async function run() {
|
|
try {
|
|
// const ms = core.getInput('milliseconds');
|
|
// console.log(`Waiting ${ms} milliseconds ...`)
|
|
|
|
// core.debug((new Date()).toTimeString())
|
|
// wait(parseInt(ms));
|
|
// core.debug((new Date()).toTimeString())
|
|
|
|
// core.setOutput('time', new Date().toTimeString());
|
|
|
|
let hugoVersion = core.getInput('hugo-version');
|
|
if (!hugoVersion) {
|
|
hugoVersion = 'latest';
|
|
}
|
|
core.debug('Hugo version:', hugoVersion);
|
|
|
|
let extended = core.getInput('extended');
|
|
if (!extended) {
|
|
extended = false;
|
|
}
|
|
core.debug('Hugo extended:', extended);
|
|
|
|
let extendedStr = '';
|
|
if (extended) {
|
|
extendedStr = 'extended_';
|
|
}
|
|
|
|
const hugoName = `hugo_${extendedStr}${hugoVersion}_Linux-64bit`;
|
|
core.debug('hugoName:', hugoName);
|
|
|
|
const hugoURL = `https://github.com/gohugoio/hugo/releases/download/v${hugoVersion}/${hugoName}.tar.gz`;
|
|
core.debug('hugoURL:', hugoURL);
|
|
|
|
const hugoTarball = await tc.downloadTool(hugoURL);
|
|
const hugoExtractedFolder = await tc.extractTar(hugoTarball, '/tmp/hugo');
|
|
core.debug('hugoExtractedFolder:', hugoExtractedFolder);
|
|
await io.mv('/tmp/hugo/hugo', '/usr/local/bin/');
|
|
}
|
|
catch (error) {
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
|
|
run()
|