From 86c9a1ae3d2baf98caa8a5bfa65213481d8faf41 Mon Sep 17 00:00:00 2001 From: Quan TRAN Date: Thu, 14 Apr 2022 10:04:26 +0200 Subject: [PATCH] Fix canary image publication --- .github/workflows/canary_images.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/canary_images.yaml b/.github/workflows/canary_images.yaml index c9f36591..1d97cb85 100644 --- a/.github/workflows/canary_images.yaml +++ b/.github/workflows/canary_images.yaml @@ -24,17 +24,17 @@ jobs: permissions: contents: read name: Build Images + strategy: + matrix: + include: + - dockerfile: Dockerfile + - dockerfile: Dockerfile.debian steps: - name: Checkout uses: actions/checkout@v3 - name: Build uses: docker/build-push-action@v2 - strategy: - matrix: - include: - - dockerfile: Dockerfile - - dockerfile: Dockerfile.debian with: file: ${{ matrix.dockerfile }} platforms: linux/amd64,linux/arm64