File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -72,10 +72,10 @@ jobs:
72
72
73
73
- name : Check binary reproducibility
74
74
run : |
75
- ./gradlew clean jar
75
+ ./gradlew clean primaryPublishJar
76
76
find . -name '*.jar' | xargs sha256sum | tee checksums.sha256sum
77
- ./gradlew clean jar && sha256sum -c checksums.sha256sum
78
- ./gradlew clean jar && sha256sum -c checksums.sha256sum
77
+ ./gradlew clean primaryPublishJar && sha256sum -c checksums.sha256sum
78
+ ./gradlew clean primaryPublishJar && sha256sum -c checksums.sha256sum
79
79
80
80
publish-test-results :
81
81
name : Publish test results
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ javadoc {
10
10
options. addStringOption(" charset" , " UTF-8" )
11
11
}
12
12
13
+ project. tasks. create(" primaryPublishJar" ) {
14
+ dependsOn(project. tasks. jar)
15
+ }
16
+
13
17
project. tasks. withType(Jar . class) {
14
18
manifest {
15
19
attributes([
You can’t perform that action at this time.
0 commit comments