Chatwoot/.github/workflows/image.yml
2021-10-06 16:21:11 +05:30

29 lines
791 B
YAML

name: buildx
on:
pull_request:
branches: develop
push:
branches: develop
jobs:
buildx:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
# not pushing to dockerhub for now
- name: Run Buildx
run: |
docker buildx build \
--platform linux/amd64,linux/arm64 \
--output "type=image,push=false" \
--file ./docker/Dockerfile .