1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-13 22:00:28 +05:30
Piped/.github/workflows/docker-build.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

2021-08-03 23:34:52 +05:30
name: Docker Multi-Architecture Build
on:
2021-12-29 01:09:02 +05:30
push:
paths-ignore:
- "**.md"
branches:
- master
2021-08-03 23:34:52 +05:30
jobs:
2021-12-29 01:09:02 +05:30
build-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2021-12-29 01:09:02 +05:30
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
uses: docker/setup-buildx-action@v1.6.0
with:
version: latest
- name: Login to DockerHub
uses: docker/login-action@v1.14.1
2021-12-29 01:09:02 +05:30
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v3.0.0
2021-12-29 01:09:02 +05:30
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: 1337kavin/piped-frontend:latest
2022-02-23 18:28:08 +05:30
cache-from: type=gha
cache-to: type=gha,mode=max