Commit 366a9eb 1 parent c13cb81 commit 366a9eb Copy full SHA for 366a9eb
File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -46,16 +46,16 @@ jobs:
46
46
47
47
- name : Build
48
48
run : |
49
- gradle build
50
- gradle jacocoRootTestReport
49
+ ./gradlew build
50
+ ./gradlew jacocoRootTestReport
51
51
52
52
- name : Sonar
53
53
if : github.ref == 'refs/heads/main'
54
54
env :
55
55
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
56
56
SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
57
57
run : |
58
- gradle sonarqube --info
58
+ ./gradlew sonarqube --info
59
59
60
60
- name : Coverage
61
61
if : github.ref == 'refs/heads/main'
81
81
cache : gradle
82
82
83
83
- name : Build
84
- run : gradle build
84
+ run : ./gradlew build
85
85
86
86
- name : Decode
87
87
run : |
93
93
ORG_GRADLE_PROJECT_sonatypeUsername : ${{ secrets.SONATYPE_USER }}
94
94
ORG_GRADLE_PROJECT_sonatypePassword : ${{ secrets.SONATYPE_PASSWORD }}
95
95
run : |
96
- gradle publishToSonatype -Psigning.keyId=${{secrets.SIGNING_KEY_ID}} -Psigning.password=${{secrets.SIGNING_KEY_PASSWORD}} -Psigning.secretKeyRingFile=$(echo ~/.gradle/secring.gpg)
96
+ ./gradlew publishToSonatype -Psigning.keyId=${{secrets.SIGNING_KEY_ID}} -Psigning.password=${{secrets.SIGNING_KEY_PASSWORD}} -Psigning.secretKeyRingFile=$(echo ~/.gradle/secring.gpg)
97
97
98
98
- name : Use Node
99
99
id : setup-node
You can’t perform that action at this time.
0 commit comments