File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 30
30
clickstream/build/reports/
31
31
clickstream/build/test-results/
32
32
- name : Upload Test Report
33
- uses : codecov/codecov-action@v3
33
+ uses : codecov/codecov-action@v4
34
34
with :
35
+ token : ${{ secrets.CODECOV_TOKEN }}
35
36
name : report
36
37
files : clickstream/build/reports/jacoco/jacoco.xml
Original file line number Diff line number Diff line change 17
17
cache : gradle
18
18
- name : Config properties
19
19
run : |
20
- echo "nexusUsername =${{ vars.NEXUS_USERNAME }}" >> key.properties
21
- echo "nexusPassword =${{ secrets.NEXUS_PASSWORD }}" >> key.properties
20
+ echo "ossrhUsername =${{ secrets.OSSRH_USERNAME }}" >> key.properties
21
+ echo "ossrhPassword =${{ secrets.OSSRH_PASSWORD }}" >> key.properties
22
22
echo "signing.keyId=${{ vars.SIGNING_KEY_ID }}" >> key.properties
23
23
echo "signing.password=${{ secrets.SIGNING_PASSWORD }}" >> key.properties
24
24
echo "signing.inMemoryKey=${{ secrets.SIGNING_IN_MEMORY_KEY }}" >> key.properties
Original file line number Diff line number Diff line change @@ -81,8 +81,8 @@ afterEvaluate { project ->
81
81
maven {
82
82
url = " https://aws.oss.sonatype.org/service/local/staging/deploy/maven2/"
83
83
credentials {
84
- username = keyProp. getProperty(" nexusUsername " )
85
- password = keyProp. getProperty(" nexusPassword " )
84
+ username = keyProp. getProperty(" ossrhUsername " )
85
+ password = keyProp. getProperty(" ossrhPassword " )
86
86
}
87
87
}
88
88
}
You can’t perform that action at this time.
0 commit comments