Initial commit

This commit is contained in:
CrazyMax
2020-01-08 22:26:34 +01:00
commit ed73f152fc
20 changed files with 6828 additions and 0 deletions

26
src/main.ts Normal file
View File

@@ -0,0 +1,26 @@
import * as installer from './installer';
import * as fs from 'fs';
import * as core from '@actions/core';
import * as exec from '@actions/exec';
export async function run(silent?: boolean) {
try {
const version = core.getInput('version') || 'latest';
const file = core.getInput('file', {required: true});
const args = core.getInput('args');
const upx = await installer.getUPX(version);
if (!fs.existsSync(file)) {
core.setFailed(`⛔ File to compress not found: ${file}`);
}
console.log('🏃 Running UPX...');
await exec.exec(`${upx} ${args} ${file}`, undefined, {
silent: silent
});
} catch (error) {
core.setFailed(error.message);
}
}
run();