File tree 3 files changed +40
-3
lines changed
3 files changed +40
-3
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,14 @@ jobs:
33
33
# Temporary use `develocity` branch
34
34
uses : apache/logging-parent/.github/workflows/build-reusable.yaml@develocity
35
35
secrets :
36
- GE_ACCESS_TOKEN : ${{ ! startsWith(github.refname, 'release/') && secrets.GE_ACCESS_TOKEN }}
36
+ DV_ACCESS_TOKEN : ${{ ! startsWith(github.refname, 'release/') && secrets.GE_ACCESS_TOKEN }}
37
37
with :
38
38
java-version : |
39
39
8
40
40
17
41
41
site-enabled : true
42
42
reproducibility-check-enabled : false
43
+ develocity-enabled : true
43
44
44
45
deploy-snapshot :
45
46
needs : build
Original file line number Diff line number Diff line change 57
57
# Secrets for committing the generated site
58
58
secrets :
59
59
GPG_SECRET_KEY : ${{ secrets.LOGGING_GPG_SECRET_KEY }}
60
- GE_ACCESS_TOKEN : ${{ secrets.GE_ACCESS_TOKEN }}
61
60
# Write permissions for committing the generated site
62
61
permissions :
63
62
contents : write
88
87
# Secrets for committing the generated site
89
88
secrets :
90
89
GPG_SECRET_KEY : ${{ secrets.LOGGING_GPG_SECRET_KEY }}
91
- GE_ACCESS_TOKEN : ${{ secrets.GE_ACCESS_TOKEN }}
92
90
# Write permissions for committing the generated site
93
91
permissions :
94
92
contents : write
Original file line number Diff line number Diff line change
1
+ #
2
+ # Licensed to the Apache Software Foundation (ASF) under one or more
3
+ # contributor license agreements. See the NOTICE file distributed with
4
+ # this work for additional information regarding copyright ownership.
5
+ # The ASF licenses this file to you under the Apache License, Version 2.0
6
+ # (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ #
17
+ name : Develocity - Publish Maven Build Scans
18
+
19
+ on :
20
+ workflow_run :
21
+ workflows : [ "build" ]
22
+ types : [ completed ]
23
+
24
+ jobs :
25
+
26
+ publish-build-scans :
27
+ runs-on : ubuntu-latest
28
+ permissions :
29
+ actions : write
30
+ pull-requests : write
31
+ steps :
32
+ - name : Setup Build Scan link capture
33
+ uses : gradle/develocity-actions/maven-setup@v1
34
+ - name : Publish Build Scans
35
+ uses : gradle/develocity-actions/maven-publish-build-scan@v1
36
+ with :
37
+ develocity-url : ' https://ge.apache.org'
38
+ develocity-access-key : ${{ secrets.GE_ACCESS_TOKEN }}
You can’t perform that action at this time.
0 commit comments