Skip to content

Building Version 3.2.1 for ARM and x86 #4

Building Version 3.2.1 for ARM and x86

Building Version 3.2.1 for ARM and x86 #4

Workflow file for this run

name: Try to build for ARM and X86
# Controls when the workflow will run
on:
pull_request:
types: [opened, synchronize, reopened]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Checkout
uses: actions/checkout@v2
with:
ref: v3.1.1
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Build and push frontend
id: docker_build_frontend
uses: docker/build-push-action@v2
with:
push: false
tags: fius/rallly_arm:dev
file: apps/web/Dockerfile
# context: ./apps/web
platforms: linux/amd64,linux/arm/v8