Update Builder for ARM

This commit is contained in:
2022-03-01 17:35:48 +00:00
committed by GitHub
parent a4e808b4bd
commit b6e12e24ab
2 changed files with 25 additions and 9 deletions

View File

@@ -6,12 +6,18 @@ on:
- main # Set a branch to deploy
env:
IMAGE_REPO: ghcr.io/hotarublaze
IMAGE_NAME: fluttershub-blog
IMAGE_REGISTRY: ghcr.io
IMAGE_OWNER: fluttershub
IMAGE_NAME: blog
jobs:
deploy:
runs-on: ubuntu-18.04
strategy:
matrix:
CPU_ARCH:
- arm64
- x86_64
# If running with act, Uncomment below
container: phaze9/action-runner
steps:
@@ -38,10 +44,22 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
- name: Build and push - x64
id: docker_build_x64
uses: docker/build-push-action@v2
if: ${{ matrix.CPU_ARCH == 'x86_64'}}
with:
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ env.IMAGE_REPO }}/${{ env.IMAGE_NAME }}:latest
platforms: linux/amd64
labels: org.opencontainers.image.source https://github.com/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}
tags: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}:x64-latest
- name: Build and push - arm64
id: docker_build_arm64
uses: docker/build-push-action@v2
if: ${{ matrix.CPU_ARCH == 'arm64'}}
with:
push: true
platforms: linux/arm64
labels: org.opencontainers.image.source https://github.com/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}
tags: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}:arm-latest