2021-08-03 18:04:52 +00:00
|
|
|
name: Docker Multi-Architecture Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
2021-10-28 18:00:00 +00:00
|
|
|
build-docker-image:
|
2021-08-03 18:04:52 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-10-18 04:06:08 +00:00
|
|
|
- uses: actions/checkout@v2.3.5
|
2021-08-03 18:04:52 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1.2.0
|
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2021-09-06 04:04:54 +00:00
|
|
|
uses: docker/setup-buildx-action@v1.6.0
|
2021-08-03 18:04:52 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1.10.0
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
2021-08-23 04:06:41 +00:00
|
|
|
uses: docker/build-push-action@v2.7.0
|
2021-08-03 18:04:52 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: 1337kavin/piped-frontend:latest
|