diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-07 17:58:39 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-07 18:03:20 +0100 |
commit | 48d46a114608b04d5ed590788cac6075b25bc463 (patch) | |
tree | 4ed117addd6073e1f0c82323ab708d08b8ecd9ac /.github/workflows | |
parent | workflows/ci: rename jobs (diff) | |
download | fr24feed-48d46a114608b04d5ed590788cac6075b25bc463.tar.gz fr24feed-48d46a114608b04d5ed590788cac6075b25bc463.zip |
workflows/ci: add a job to run docker buildx
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files changed, 13 insertions, 1 deletions
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] |