File tree Expand file tree Collapse file tree 3 files changed +19
-9
lines changed Expand file tree Collapse file tree 3 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 48
48
name : Verify
49
49
needs : build-and-deploy-snapshot
50
50
uses : ./.github/workflows/verify.yml
51
- secrets : inherit
51
+ secrets :
52
+ google-chat-webhook-url : ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
53
+ repository-password : ${{ secrets.ARTIFACTORY_PASSWORD }}
54
+ repository-username : ${{ secrets.ARTIFACTORY_USERNAME }}
55
+ token : ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
52
56
with :
53
57
version : ${{ needs.build-and-deploy-snapshot.outputs.version }}
Original file line number Diff line number Diff line change 41
41
staging : true
42
42
version : ${{ needs.build-and-stage-release.outputs.version }}
43
43
secrets :
44
- repository-username : ${{ secrets.ARTIFACTORY_USERNAME }}
44
+ google-chat-webhook-url : ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
45
45
repository-password : ${{ secrets.ARTIFACTORY_PASSWORD }}
46
+ repository-username : ${{ secrets.ARTIFACTORY_USERNAME }}
47
+ token : ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
46
48
sync-to-maven-central :
47
49
name : Sync to Maven Central
48
50
needs :
Original file line number Diff line number Diff line change 14
14
required : false
15
15
repository-password :
16
16
required : false
17
+ google-chat-webhook-url :
18
+ required : true
19
+ token :
20
+ required : true
17
21
jobs :
18
22
verify :
19
23
name : Verify
20
24
runs-on : ubuntu-latest
21
25
steps :
22
- - name : Check Out Release Verification Tests
23
- uses : actions/checkout@v4
24
- with :
25
- repository : spring-projects/spring-boot-release-verification
26
- ref : ' v0.0.2'
27
- token : ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
28
26
- name : Check Out Send Notification Action
29
27
uses : actions/checkout@v4
30
28
with :
31
29
path : spring-boot
32
30
sparse-checkout : .github/actions/send-notification
31
+ - name : Check Out Release Verification Tests
32
+ uses : actions/checkout@v4
33
+ with :
34
+ repository : spring-projects/spring-boot-release-verification
35
+ ref : ' v0.0.2'
36
+ token : ${{ secrets.token }}
33
37
- name : Set Up Java
34
38
uses : actions/setup-java@v4
35
39
with :
64
68
uses : ./spring-boot/.github/actions/send-notification
65
69
if : always()
66
70
with :
67
- webhook-url : ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
71
+ webhook-url : ${{ secrets.google-chat-webhook-url }}
68
72
status : ${{ job.status }}
69
73
run-name : ${{ format('{0} | Verification | {1}', github.ref_name, inputs.version) }}
You can’t perform that action at this time.
0 commit comments