mirror of
https://github.com/docker/setup-buildx-action.git
synced 2025-04-22 16:06:36 +02:00
Override the configured builder instance
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
daf8c4fb8d
commit
0ddb9e80d4
4 changed files with 14 additions and 6 deletions
6
dist/index.js
generated
vendored
6
dist/index.js
generated
vendored
|
@ -557,7 +557,11 @@ function run() {
|
|||
yield exec.exec('docker', createArgs);
|
||||
core.endGroup();
|
||||
core.startGroup(`🏃 Booting builder`);
|
||||
yield exec.exec('docker', ['buildx', 'inspect', '--bootstrap']);
|
||||
let bootstrapArgs = ['buildx', 'inspect', '--bootstrap'];
|
||||
if (semver.satisfies(buildxVersion, '>=0.4.0')) {
|
||||
bootstrapArgs.push('--builder', builderName);
|
||||
}
|
||||
yield exec.exec('docker', bootstrapArgs);
|
||||
core.endGroup();
|
||||
}
|
||||
if (inputs.install) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue