mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-08 21:48:11 -05:00
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: Docker-coordinator-api-arm64
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "tag of this image (suffix -arm64 is added automatically)"
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
build-and-push-arm64-image:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
arch:
|
|
- aarch64
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Set up QEMU
|
|
run: |
|
|
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
|
docker buildx create --name multiarch --driver docker-container --use
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Build docker image
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
platforms: linux/arm64
|
|
context: .
|
|
file: ./build/dockerfiles/coordinator-api.Dockerfile
|
|
push: true
|
|
tags: scrolltech/coordinator-api:${{inputs.tag}}-arm64
|