remove arm64 support for the time being, because of upstream support

This commit is contained in:
Amruth Pillai
2022-11-24 21:09:32 +01:00
parent 11bea1c7c4
commit 69f2b7070f
2 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,6 @@
name: Deploy Latest Version on DigitalOcean name: Deploy Latest Version on DigitalOcean
on: on:
workflow_dispatch:
workflow_run: workflow_run:
workflows: workflows:
- Build and Push Docker Image - Build and Push Docker Image

View File

@ -16,7 +16,6 @@ jobs:
strategy: strategy:
matrix: matrix:
arch: [amd64, arm64]
image: [client, server] image: [client, server]
steps: steps:
@ -30,7 +29,7 @@ jobs:
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0 uses: docker/setup-qemu-action@v2.1.0
with: with:
platforms: ${{ matrix.arch }} platforms: amd64
- id: buildx - id: buildx
name: Set up Docker Buildx name: Set up Docker Buildx
@ -54,7 +53,7 @@ jobs:
with: with:
context: . context: .
push: true push: true
platforms: ${{ matrix.arch }} platforms: linux/amd64
file: ${{ matrix.image }}/Dockerfile file: ${{ matrix.image }}/Dockerfile
tags: | tags: |
amruthpillai/reactive-resume:${{ matrix.image }}-latest amruthpillai/reactive-resume:${{ matrix.image }}-latest