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