Piped/.github/workflows/docker-build.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

2021-08-03 18:04:52 +00:00
name: Docker Multi-Architecture Build
on:
2021-12-28 19:39:02 +00:00
push:
paths-ignore:
- "**.md"
branches:
- master
2021-08-03 18:04:52 +00:00
jobs:
2021-12-28 19:39:02 +00:00
build-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2021-12-28 19:39:02 +00:00
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.0.0
2021-12-28 19:39:02 +00:00
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2.0.0
2021-12-28 19:39:02 +00:00
with:
version: latest
- name: Login to DockerHub
uses: docker/login-action@v2.0.0
2021-12-28 19:39:02 +00:00
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v3.1.1
2021-12-28 19:39:02 +00:00
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: 1337kavin/piped-frontend:latest
2022-02-23 12:58:08 +00:00
cache-from: type=gha
cache-to: type=gha,mode=max