mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-03-15 19:41:24 +00:00
Create buildimage.yml
This commit is contained in:
parent
05c28412b8
commit
4c7a0c3b06
1 changed files with 30 additions and 0 deletions
30
.github/workflows/buildimage.yml
vendored
Normal file
30
.github/workflows/buildimage.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
name: buildx
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: mqtt
|
||||
tags:
|
||||
|
||||
jobs:
|
||||
buildx:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: crazy-max/ghaction-docker-buildx@v1
|
||||
with:
|
||||
version: latest
|
||||
-
|
||||
name: Available platforms
|
||||
run: echo ${{ steps.buildx.outputs.platforms }}
|
||||
-
|
||||
name: Run Buildx
|
||||
run: |
|
||||
docker buildx build \
|
||||
--platform linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 \
|
||||
--output "type=image,push=false" \
|
||||
--file ./Docker/Dockerfile
|
Loading…
Add table
Reference in a new issue