import * as os from 'os'; import * as path from 'path'; import * as util from 'util'; import * as github from './github'; import * as pro from './pro'; import * as core from '@actions/core'; import * as tc from '@actions/tool-cache'; const osPlat: string = os.platform(); const osArch: string = os.arch(); export async function getGoReleaser(distribution: string, version: string): Promise { const release: github.GitHubRelease | null = await github.getRelease(distribution, version); if (!release) { throw new Error(`Cannot find GoReleaser ${version} release`); } const filename = getFilename(distribution); const downloadUrl = util.format( 'https://github.com/goreleaser/%s/releases/download/%s/%s', distribution, release.tag_name, filename ); core.info(`Downloading ${downloadUrl}`); const downloadPath: string = await tc.downloadTool(downloadUrl); core.debug(`Downloaded to ${downloadPath}`); core.info('Extracting GoReleaser'); let extPath: string; if (osPlat == 'win32') { extPath = await tc.extractZip(downloadPath); } else { extPath = await tc.extractTar(downloadPath); } core.debug(`Extracted to ${extPath}`); const cachePath: string = await tc.cacheDir(extPath, 'goreleaser-action', release.tag_name.replace(/^v/, '')); core.debug(`Cached to ${cachePath}`); const exePath: string = path.join(cachePath, osPlat == 'win32' ? 'goreleaser.exe' : 'goreleaser'); core.debug(`Exe path is ${exePath}`); return exePath; } const getFilename = (distribution: string): string => { const platform: string = osPlat == 'win32' ? 'Windows' : osPlat == 'darwin' ? 'Darwin' : 'Linux'; const arch: string = osArch == 'x64' ? 'x86_64' : 'i386'; const ext: string = osPlat == 'win32' ? 'zip' : 'tar.gz'; const suffix: string = pro.suffix(distribution); return util.format('goreleaser%s_%s_%s.%s', suffix, platform, arch, ext); };