From dd23ae6236be07356e4ff081e12da5a0818e963f Mon Sep 17 00:00:00 2001 From: Michael Bull Date: Tue, 5 Mar 2024 05:43:52 +0000 Subject: [PATCH] Include os name in workflow jobs --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ba797ed..e0e1778 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,7 @@ permissions: jobs: build: - name: Build + name: Build on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: @@ -56,7 +56,7 @@ jobs: run: ./gradlew ${{ matrix.tasks }} publish: - name: Publish + name: Publish on ${{ matrix.os }} runs-on: ${{ matrix.os }} if: github.ref == 'refs/heads/master' && github.repository == 'michaelbull/kotlin-retry' needs: build