From 6d45f56b8a8780ae41960f499f6b0b81d20bf588 Mon Sep 17 00:00:00 2001 From: Michael Bull Date: Sun, 3 Mar 2024 14:14:13 +0000 Subject: [PATCH] Add names to workflow jobs --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5ff859f..f0e9f1c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,6 +11,8 @@ permissions: jobs: build: + name: Build + strategy: matrix: include: @@ -55,6 +57,8 @@ jobs: run: ./gradlew ${{ matrix.tasks }} publish: + name: Publish + needs: build if: github.ref == 'refs/heads/master' && github.event_name == 'push' && needs.build.result == 'success'