generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.js
More file actions
54 lines (44 loc) · 1.37 KB
/
index.js
File metadata and controls
54 lines (44 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const core = require('@actions/core');
const toolCache = require('@actions/tool-cache');
const childProcess = require('node:child_process');
const os = require('node:os');
const osMapper = {
win32: 'windows',
darwin: 'macosx',
linux: 'linux',
};
function isWindows(osPlatform) {
return osPlatform === 'win32';
}
const archMapper = {
x32: '386',
x64: 'amd64',
arm64: 'arm64',
};
async function run() {
try {
const phrase = 'phrase';
const osPlatform = os.platform();
const osArch = os.arch();
const version = core.getInput('version');
const cacheToolPath = toolCache.find(phrase, version);
if (cacheToolPath && cacheToolPath !== '') {
core.addPath(cacheToolPath);
return;
}
const fileName = isWindows(osPlatform)
? `phrase_${osMapper[osPlatform]}_${archMapper[osArch]}.exe`
: `phrase_${osMapper[osPlatform]}_${archMapper[osArch]}`;
const downloadUrl = `https://github.com/phrase/phrase-cli/releases/download/${version}/${fileName}`;
const downloadPath = await toolCache.downloadTool(downloadUrl);
const toolPath = await toolCache.cacheFile(downloadPath, phrase, phrase, version, osArch);
core.addPath(toolPath);
if (!isWindows(osPlatform)) {
childProcess.exec(`chmod +x ${toolPath}/${phrase}`);
}
core.setOutput(toolPath);
} catch (error) {
core.setFailed(error);
}
}
run();