1
0
Fork 0
mirror of https://github.com/docker/setup-buildx-action.git synced 2025-05-11 00:49:30 +02:00

Allow to download staging releases of buildx

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2021-06-30 19:54:54 +02:00
parent a1c666d855
commit 3b5c478cc4
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
10 changed files with 8527 additions and 40 deletions

View file

@ -1,7 +1,10 @@
import * as os from 'os';
import * as core from '@actions/core';
import {issueCommand} from '@actions/core/lib/command';
import fs from 'fs';
import path from 'path';
let _tmpDir: string;
export const osPlat: string = os.platform();
export const osArch: string = os.arch();
@ -14,6 +17,14 @@ export interface Inputs {
use: boolean;
endpoint: string;
config: string;
githubToken: string;
}
export function tmpDir(): string {
if (!_tmpDir) {
_tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'docker-setup-buildx-')).split(path.sep).join(path.posix.sep);
}
return _tmpDir;
}
export async function getInputs(): Promise<Inputs> {
@ -27,7 +38,8 @@ export async function getInputs(): Promise<Inputs> {
install: core.getBooleanInput('install'),
use: core.getBooleanInput('use'),
endpoint: core.getInput('endpoint'),
config: core.getInput('config')
config: core.getInput('config'),
githubToken: core.getInput('github-token')
};
}