mirror of
https://github.com/docker/setup-buildx-action.git
synced 2025-07-25 07:48:24 +02:00
Save BuildKit state on client for cache support
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
74283caced
commit
f3f23a5162
9 changed files with 127 additions and 8 deletions
|
@ -30,6 +30,7 @@ export interface Inputs {
|
|||
endpoint: string;
|
||||
config: string;
|
||||
configInline: string;
|
||||
stateDir: string;
|
||||
}
|
||||
|
||||
export async function getInputs(): Promise<Inputs> {
|
||||
|
@ -42,7 +43,8 @@ export async function getInputs(): Promise<Inputs> {
|
|||
use: core.getBooleanInput('use'),
|
||||
endpoint: core.getInput('endpoint'),
|
||||
config: core.getInput('config'),
|
||||
configInline: core.getInput('config-inline')
|
||||
configInline: core.getInput('config-inline'),
|
||||
stateDir: core.getInput('state-dir')
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue