Skip to content

Commit 67b1ef9

Browse files
committed
Fix jsign extract output filename (.sig.pem not .p7)
Co-authored-by: Isaac
1 parent 487c272 commit 67b1ef9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ jobs:
8686
for exe in dist/windows_*/databricks.exe; do
8787
echo "=== $exe ==="
8888
java -jar "$JSIGN_JAR" extract --format PEM "$exe"
89-
openssl pkcs7 -in "${exe}.p7" -inform PEM -print_certs -text -noout
90-
rm "${exe}.p7"
89+
openssl pkcs7 -in "${exe}.sig.pem" -inform PEM -print_certs -text -noout
90+
rm "${exe}.sig.pem"
9191
echo
9292
done
9393

0 commit comments

Comments
 (0)