Update Builder for ARM
This commit is contained in:
30
.github/workflows/release.yml
vendored
30
.github/workflows/release.yml
vendored
@@ -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
|
||||
Reference in New Issue
Block a user