From f830bd137df027787ca5c206ccde02cd6ef42e2a Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 7 Feb 2023 17:54:07 +0100 Subject: workflows/ci: rename jobs --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e070bce..3e8188a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,31 +6,31 @@ on: workflow_dispatch: jobs: - native: + docker: runs-on: ubuntu-latest - name: Build native images + name: Build / docker build steps: - name: Checkout uses: actions/checkout@v3 - - name: Build native images + - name: Build /w docker build run: make docker/build compose: runs-on: ubuntu-latest - name: Build using Compose + name: Build / docker-compose steps: - name: Checkout uses: actions/checkout@v3 - - name: Build using Compose + - name: Build w/ docker-compose run: make compose/build publish: - needs: [native, compose] + needs: [docker, compose] strategy: matrix: project: [dump1090, fr24feed] runs-on: ubuntu-latest - name: 'Publish ${{ matrix.project }}' + name: 'Publish / ${{ matrix.project }}' if: github.ref == 'refs/heads/master' steps: - name: Checkout -- cgit v1.2.3