@@ -8,28 +8,28 @@ concurrency:
8
8
jobs :
9
9
build-and-deploy-snapshot :
10
10
if : ${{ github.repository == 'spring-projects/spring-boot' }}
11
- name : Build and deploy snapshot
11
+ name : Build and Deploy Snapshot
12
12
runs-on : ubuntu22-8-32
13
13
steps :
14
- - name : Set up Java
14
+ - name : Setup Java
15
15
uses : actions/setup-java@v4
16
16
with :
17
17
distribution : ' liberica'
18
18
java-version : 17
19
- - name : Check out code
19
+ - name : Checkout
20
20
uses : actions/checkout@v4
21
21
- name : Set up Gradle
22
22
uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
23
23
with :
24
24
cache-read-only : false
25
- - name : Configure Gradle properties
25
+ - name : Configure Gradle Properties
26
26
shell : bash
27
27
run : |
28
28
mkdir -p $HOME/.gradle
29
29
echo 'systemProp.user.name=spring-builds+github' >> $HOME/.gradle/gradle.properties
30
30
echo 'systemProp.org.gradle.internal.launcher.welcomeMessageEnabled=false' >> $HOME/.gradle/gradle.properties
31
31
echo 'org.gradle.daemon=false' >> $HOME/.gradle/gradle.properties
32
- - name : Build and publish
32
+ - name : Build and Publish
33
33
id : build
34
34
env :
35
35
CI : ' true'
@@ -51,15 +51,15 @@ jobs:
51
51
signing-passphrase : ${{ secrets.GPG_PASSPHRASE }}
52
52
artifact-properties : |
53
53
/**/spring-boot-docs-*.zip::zip.type=docs,zip.deployed=false
54
- - name : Send notification
54
+ - name : Send Notification
55
55
uses : ./.github/actions/send-notification
56
56
if : always()
57
57
with :
58
58
webhook-url : ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
59
59
status : ${{ job.status }}
60
60
build-scan-url : ${{ steps.build.outputs.build-scan-url }}
61
61
run-name : ${{ format('{0} | Linux | Java 17', github.ref_name) }}
62
- - name : Read version from gradle.properties
62
+ - name : Read Version From gradle.properties
63
63
id : read-version
64
64
shell : bash
65
65
run : |
@@ -73,43 +73,43 @@ jobs:
73
73
runs-on : ubuntu-latest
74
74
needs : build-and-deploy-snapshot
75
75
steps :
76
- - name : Check out release verification tests
76
+ - name : Checkout Release Verification Tests
77
77
uses : actions/checkout@v4
78
78
with :
79
79
repository : spring-projects/spring-boot-release-verification
80
80
ref : ' main'
81
81
token : ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
82
- - name : Check out send notification action
82
+ - name : Checkout Send Notification Action
83
83
uses : actions/checkout@v4
84
84
with :
85
85
path : spring-boot
86
86
sparse-checkout : .github/actions/send-notification
87
- - name : Set up Java
87
+ - name : Setup Java
88
88
uses : actions/setup-java@v4
89
89
with :
90
90
distribution : ' liberica'
91
91
java-version : 17
92
- - name : Set up Gradle
92
+ - name : Setup Gradle
93
93
uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
94
94
with :
95
95
cache-read-only : false
96
- - name : Configure Gradle properties
96
+ - name : Configure Gradle Properties
97
97
shell : bash
98
98
run : |
99
99
mkdir -p $HOME/.gradle
100
100
echo 'org.gradle.daemon=false' >> $HOME/.gradle/gradle.properties
101
- - name : Run release verification tests
101
+ - name : Run Release Verification Tests
102
102
env :
103
103
RVT_VERSION : ${{ needs.build-and-deploy-snapshot.outputs.version }}
104
104
RVT_RELEASE_TYPE : oss
105
105
run : ./gradlew spring-boot-release-verification-tests:test
106
- - name : Upload build reports on failure
106
+ - name : Upload Build Reports on Failure
107
107
uses : actions/upload-artifact@v4
108
108
if : failure()
109
109
with :
110
110
name : build-reports
111
111
path : ' **/build/reports/'
112
- - name : Send notification
112
+ - name : Send Notification
113
113
uses : ./spring-boot/.github/actions/send-notification
114
114
if : always()
115
115
with :
0 commit comments