File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 84
84
if : ${{ matrix.java != 8 }} # JDK 8 does not produce reproducible binaries
85
85
run : |
86
86
./gradlew clean primaryPublishJar
87
- find . -name '*.jar' | xargs sha256sum | tee checksums.sha256sum
88
- ./gradlew clean primaryPublishJar && sha256sum -c checksums.sha256sum
89
- ./gradlew clean primaryPublishJar && sha256sum -c checksums.sha256sum
87
+ find . -name '*.jar' | grep -v buildSrc | grep -v gradle-wrapper | xargs sha256sum | tee java-webauthn-server-artifacts.sha256sum
88
+ ./gradlew clean primaryPublishJar && sha256sum -c java-webauthn-server-artifacts.sha256sum
89
+ ./gradlew clean primaryPublishJar && sha256sum -c java-webauthn-server-artifacts.sha256sum
90
+
91
+ - name : Archive artifact checksums
92
+ if : ${{ matrix.java != 8 }} # JDK 8 does not produce reproducible binaries
93
+ uses : actions/upload-artifact@v4
94
+ with :
95
+ name : artifact-checksums-java${{ matrix.java }}-${{ matrix.distribution }}
96
+ path : java-webauthn-server-artifacts.sha256sum
90
97
91
98
publish-test-results :
92
99
name : Publish test results
You can’t perform that action at this time.
0 commit comments