mirror of
https://github.com/docker/build-push-action.git
synced 2025-08-20 04:11:02 +00:00
*: allow users to pass in a buildx version
This commit is contained in:
parent
e09a08878e
commit
28c244705c
4 changed files with 23 additions and 3 deletions
|
@ -59,6 +59,7 @@ export interface Inputs {
|
|||
'github-token': string;
|
||||
nofallback: boolean;
|
||||
setupOnly: boolean;
|
||||
'buildx-version': string;
|
||||
}
|
||||
|
||||
export async function getInputs(): Promise<Inputs> {
|
||||
|
@ -98,6 +99,7 @@ export async function getInputs(): Promise<Inputs> {
|
|||
'github-token': core.getInput('github-token'),
|
||||
nofallback: core.getBooleanInput('nofallback'),
|
||||
setupOnly: core.getBooleanInput('setup-only'),
|
||||
'buildx-version': core.getInput('buildx-version')
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue