This repository has been archived on 2025-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
Workflow config file is invalid. Please check your config file: yaml: line 10: did not find expected '-' indicator
Timothy Miller 86c935dea7 🐳 CI Multi-Arch Docker Builds
🗄️ Organized scripts
2021-02-28 12:06:38 -05:00

23 lines
665 B
YAML

name: build our image
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
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: build the image
run: |
docker buildx build \
--tag timothyjmiller/cloudflare-ddns:latest \
--platform linux/ppc64le,linux/s390x,linux/386,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/amd64 .