mirror of
https://gitea.com/docker/setup-buildx-action.git
synced 2025-07-10 13:17:07 +08:00
Add context input (#16)
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
@ -42,6 +42,9 @@ async function run(): Promise<void> {
|
||||
if (inputs.use) {
|
||||
createArgs.push('--use');
|
||||
}
|
||||
if (inputs.context) {
|
||||
createArgs.push(inputs.context);
|
||||
}
|
||||
await exec.exec('docker', createArgs);
|
||||
|
||||
core.info('🏃 Booting builder...');
|
||||
|
Reference in New Issue
Block a user