Include os name in workflow jobs

This commit is contained in:
Michael Bull 2024-03-05 05:43:19 +00:00
parent f91b7c1efa
commit 5d2c732ae7
1 changed files with 2 additions and 2 deletions

View File

@ -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-result'
needs: build