From b8f014cb85893330dcad59316a49ff0f652db881 Mon Sep 17 00:00:00 2001 From: Krypton Date: Thu, 6 Mar 2025 16:36:34 +0100 Subject: [PATCH] ci: Manual platforms architecture For some reason it doesn't push all the possible images like that --- .github/workflows/docker-publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index eec3240..d9e3d91 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -10,7 +10,6 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - architecture: [amd64, arm64] os: [alpine, debian, ubuntu] steps: - name: Checkout code @@ -27,6 +26,6 @@ jobs: with: context: . file: ./Dockerfile.${{ matrix.os }} - platforms: linux/${{ matrix.architecture }} + platforms: linux/amd64,linux/arm64 push: true tags: kkrypt0nn/wordlists:${{ matrix.os }}-latest