Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 42a83de

Browse files
committed
ci: add proper job names in workflows
1 parent f450ffc commit 42a83de

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
GITHUB_MAVEN_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
3232
run: ./gradlew build
3333
publish:
34+
name: "Publish Snapshot"
3435
if: github.event_name == 'push'
3536
needs: build
3637
runs-on: ubuntu-24.04
@@ -56,6 +57,7 @@ jobs:
5657
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
5758
run: ./gradlew publish
5859
docs:
60+
name: "Publish Snapshot Documentation"
5961
if: github.event_name == 'push'
6062
needs: build
6163
runs-on: ubuntu-24.04

.github/workflows/groovy-joint-workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ permissions:
1212
packages: read
1313
jobs:
1414
build_groovy:
15+
name: "Build Groovy"
1516
runs-on: ubuntu-24.04
1617
outputs:
1718
groovyVersion: ${{ steps.groovy-version.outputs.value }}
@@ -104,6 +105,7 @@ jobs:
104105
./gradlew pTML -x groovydoc -x javadoc -x javadocAll -x groovydocAll -x asciidoc -x docGDK
105106
106107
build_project:
108+
name: "Build Project"
107109
needs: build_groovy
108110
runs-on: ubuntu-24.04
109111
steps:

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ env:
77
GIT_USER_EMAIL: 'grails-build@users.noreply.github.com'
88
jobs:
99
publish:
10+
name: "Publish to Sonatype Staging Repository"
1011
outputs:
1112
release_version: ${{ steps.release_version.outputs.value }}
1213
runs-on: ubuntu-24.04
@@ -49,6 +50,7 @@ jobs:
4950
publishToSonatype
5051
closeSonatypeStagingRepository
5152
release:
53+
name: "Release Sonatype Staging Repository"
5254
needs: publish
5355
runs-on: ubuntu-24.04
5456
permissions:
@@ -82,6 +84,7 @@ jobs:
8284
if: success()
8385
uses: grails/github-actions/post-release@main
8486
docs:
87+
name: "Publish Documentation"
8588
needs: publish
8689
runs-on: ubuntu-24.04
8790
permissions:

0 commit comments

Comments
 (0)