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

45 lines
1.4 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
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
- run: yarn build --out-dir dist-ci && sed -i 's/fonts.gstatic.com/fonts.kavin.rocks/g' dist-ci/assets/*.css
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