mirror of
https://github.com/docker/build-push-action.git
synced 2025-06-28 20:24:13 +00:00
initial code
This commit is contained in:
parent
84ad562665
commit
6802d7df2c
8 changed files with 576 additions and 12 deletions
|
@ -41,6 +41,9 @@ export interface Inputs {
|
|||
target: string;
|
||||
ulimit: string[];
|
||||
'github-token': string;
|
||||
apiKey: string;
|
||||
profileName: string;
|
||||
timeout: string;
|
||||
}
|
||||
|
||||
export async function getInputs(): Promise<Inputs> {
|
||||
|
@ -77,7 +80,10 @@ export async function getInputs(): Promise<Inputs> {
|
|||
tags: Util.getInputList('tags'),
|
||||
target: core.getInput('target'),
|
||||
ulimit: Util.getInputList('ulimit', {ignoreComma: true}),
|
||||
'github-token': core.getInput('github-token')
|
||||
'github-token': core.getInput('github-token'),
|
||||
apiKey: core.getInput('api-key'),
|
||||
profileName: core.getInput('profile-name'),
|
||||
timeout: core.getInput('timeout')
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue