From 48d46a114608b04d5ed590788cac6075b25bc463 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 7 Feb 2023 17:58:39 +0100 Subject: workflows/ci: add a job to run docker buildx --- .github/workflows/ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e8188a..74114b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,20 @@ jobs: - name: Build w/ docker-compose run: make compose/build + buildx: + runs-on: ubuntu-latest + name: Build / docker buildx + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Build w/ docker buildx + run: | + make buildx/create + make buildx/build + make buildx/rm + publish: - needs: [docker, compose] + needs: [docker, compose, buildx] strategy: matrix: project: [dump1090, fr24feed] -- cgit v1.2.3