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:
|
2022-03-02 04:07:41 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-10 18:50:54 +00:00
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v3
|
2021-12-28 19:39:02 +00:00
|
|
|
with:
|
2022-09-10 18:50:54 +00:00
|
|
|
cache: "yarn"
|
|
|
|
- run: yarn install --prefer-offline
|
2023-01-03 01:41:59 +00:00
|
|
|
- run: yarn build && ./localizefonts.sh && mv dist/ dist-ci/
|
2021-12-28 19:39:02 +00:00
|
|
|
- name: Set up QEMU
|
2022-09-10 18:50:54 +00:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2021-12-28 19:39:02 +00:00
|
|
|
with:
|
|
|
|
platforms: all
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2022-09-10 18:50:54 +00:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2021-12-28 19:39:02 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
- name: Login to DockerHub
|
2022-09-10 18:50:54 +00:00
|
|
|
uses: docker/login-action@v2
|
2021-12-28 19:39:02 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
2022-09-10 18:50:54 +00:00
|
|
|
uses: docker/build-push-action@v3
|
2021-12-28 19:39:02 +00:00
|
|
|
with:
|
|
|
|
context: .
|
2022-09-10 18:50:54 +00:00
|
|
|
file: ./Dockerfile.ci
|
2021-12-28 19:39:02 +00:00
|
|
|
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
|