####################### # build docker images # ####################### # branch: master # event: pull_request depends_on: - tests pipeline: # build docker image for amd64 - x86 dryrun-build-amd64: when: branch: master event: pull_request image: woodpeckerci/plugin-docker-buildx pull: true settings: dry_run: true repo: olofvndrhr/manga-dlp platforms: linux/amd64 context: docker dockerfile: docker/Dockerfile.amd64 auto_tag: true auto_tag_suffix: linux-amd64 # build docker image for arm64 dryrun-build-arm64: when: branch: master event: pull_request image: woodpeckerci/plugin-docker-buildx pull: true settings: dry_run: true repo: olofvndrhr/manga-dlp platforms: linux/arm64/v8 context: docker dockerfile: docker/Dockerfile.arm64 auto_tag: true auto_tag_suffix: linux-arm64