mirror of
https://github.com/docker/build-push-action.git
synced 2025-04-22 14:46:39 +02:00
Add install input to set buildx as default builder (#71)
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
925fee3dc9
commit
5290010a6f
5 changed files with 32 additions and 6 deletions
22
.github/workflows/setup-buildx-ci.yml
vendored
22
.github/workflows/setup-buildx-ci.yml
vendored
|
@ -39,6 +39,22 @@ jobs:
|
|||
name: Available platforms
|
||||
run: echo ${{ steps.buildx.outputs.platforms }}
|
||||
|
||||
install:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: ./setup-buildx/
|
||||
with:
|
||||
install: true
|
||||
-
|
||||
name: Check cmd
|
||||
run: |
|
||||
docker build --help
|
||||
|
||||
with-qemu:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
@ -51,12 +67,6 @@ jobs:
|
|||
- latest
|
||||
- 4.2.0-7
|
||||
steps:
|
||||
-
|
||||
name: Runner info
|
||||
run: |
|
||||
sudo apt-get install -y hwinfo
|
||||
sudo hwinfo --short
|
||||
sudo mount
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue