From 71a3053f87d1dd73e6f8985bcb53750d7bb13246 Mon Sep 17 00:00:00 2001 From: Ziedelth Date: Fri, 22 Dec 2023 00:03:37 +0100 Subject: [PATCH] Fix build platform --- .github/workflows/global_workflow.yml | 7 +++---- .github/workflows/release_workflow.yml | 5 ++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/global_workflow.yml b/.github/workflows/global_workflow.yml index 166b1a63..d6702519 100644 --- a/.github/workflows/global_workflow.yml +++ b/.github/workflows/global_workflow.yml @@ -46,7 +46,7 @@ jobs: docker: strategy: matrix: - platform: [linux/amd64, linux/arm64/v8] + platform: [linux/amd64, linux/arm64, linux/arm64/v8] runs-on: ubuntu-latest @@ -61,12 +61,11 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - with: - platforms: ${{ matrix.platform }} - name: Build docker file uses: docker/build-push-action@v5 with: context: . push: false - tags: registry.ziedelth.fr:5000/shikkanime-core:dev \ No newline at end of file + tags: registry.ziedelth.fr:5000/shikkanime-core:dev + platforms: ${{ matrix.platform }} \ No newline at end of file diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml index 3cb0b19d..3275bd22 100644 --- a/.github/workflows/release_workflow.yml +++ b/.github/workflows/release_workflow.yml @@ -17,8 +17,6 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - with: - platforms: linux/arm64/v8 - name: Login to GitHub Container Registry uses: docker/login-action@v3 @@ -32,4 +30,5 @@ jobs: with: context: . push: true - tags: registry.ziedelth.fr:5000/shikkanime-core:latest \ No newline at end of file + tags: registry.ziedelth.fr:5000/shikkanime-core:latest + platforms: linux/arm64/v8 \ No newline at end of file