Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Github Actions(deps): Bump docker/setup-qemu-action from 1.2.0 to 3.2.0 #106

Github Actions(deps): Bump docker/setup-qemu-action from 1.2.0 to 3.2.0

Github Actions(deps): Bump docker/setup-qemu-action from 1.2.0 to 3.2.0 #106

name: Container Build Test
on:
workflow_dispatch:
push:
branches-ignore:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build container for testing
runs-on: ubuntu-latest
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v2
- name: Set up QEMU
id: qemu
if: success()
uses: docker/setup-qemu-action@v3.2.0
with:
platforms: arm64
- name: Set up Docker Buildx
id: buildx
if: success()
uses: docker/setup-buildx-action@v1
- name: Build container
id: build
if: success()
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: arm64
tags: ${{ github.repository }}:container-build-test-${{ github.RUN_NUMBER }}