We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c08a6c commit 487c272Copy full SHA for 487c272
1 file changed
.github/workflows/release-test.yml
@@ -81,6 +81,16 @@ jobs:
81
env:
82
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
83
84
+ - name: Verify Windows binary signatures
85
+ run: |
86
+ for exe in dist/windows_*/databricks.exe; do
87
+ echo "=== $exe ==="
88
+ java -jar "$JSIGN_JAR" extract --format PEM "$exe"
89
+ openssl pkcs7 -in "${exe}.p7" -inform PEM -print_certs -text -noout
90
+ rm "${exe}.p7"
91
+ echo
92
+ done
93
+
94
- name: Upload artifacts
95
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
96
with:
0 commit comments