From 500afffbcf91501d3277b69b410d8bc1988f9c2a Mon Sep 17 00:00:00 2001 From: boojack Date: Fri, 25 Nov 2022 22:06:40 +0800 Subject: [PATCH] chore: update test image platforms (#575) chore: update test image plantforms --- .github/workflows/build-and-push-test-image.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-push-test-image.yml b/.github/workflows/build-and-push-test-image.yml index 2ee9896e..042de5d7 100644 --- a/.github/workflows/build-and-push-test-image.yml +++ b/.github/workflows/build-and-push-test-image.yml @@ -25,7 +25,7 @@ jobs: with: install: true - - name: Build and Push + - name: Build and Push to linux/amd64 id: docker_build uses: docker/build-push-action@v3 with: @@ -34,3 +34,13 @@ jobs: platforms: linux/amd64 push: true tags: neosmemo/memos:test + + - name: Build and Push linux/arm64 + id: docker_build + uses: docker/build-push-action@v3 + with: + context: ./ + file: ./Dockerfile + platforms: linux/arm64 + push: true + tags: neosmemo/memos:test