mirror of
https://gitea.com/docker/setup-buildx-action.git
synced 2025-07-18 17:08:01 +08:00
cache-binary input to enable/disable caching binary to GHA cache backend
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
@@ -20,6 +20,7 @@ export interface Inputs {
|
||||
config: string;
|
||||
configInline: string;
|
||||
append: string;
|
||||
cacheBinary: boolean;
|
||||
cleanup: boolean;
|
||||
}
|
||||
|
||||
@@ -37,6 +38,7 @@ export async function getInputs(): Promise<Inputs> {
|
||||
config: core.getInput('config'),
|
||||
configInline: core.getInput('config-inline'),
|
||||
append: core.getInput('append'),
|
||||
cacheBinary: core.getBooleanInput('cache-binary'),
|
||||
cleanup: core.getBooleanInput('cleanup')
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user