diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-07 17:54:07 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-07 17:57:05 +0100 |
commit | f830bd137df027787ca5c206ccde02cd6ef42e2a (patch) | |
tree | e3cf240e7b0652f43c7ec908294d70ff5fc0b341 /.github | |
parent | Makefile: remove obsolete recipes (diff) | |
download | fr24feed-f830bd137df027787ca5c206ccde02cd6ef42e2a.tar.gz fr24feed-f830bd137df027787ca5c206ccde02cd6ef42e2a.zip |
workflows/ci: rename jobs
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files 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 |