1
0
Fork 0
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:
CrazyMax 2020-08-07 19:14:30 +02:00
parent 925fee3dc9
commit 5290010a6f
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
5 changed files with 32 additions and 6 deletions

View file

@ -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