Skip to content

Commit f3e8b39

Browse files
committed
Fix glob pattern for Windows binary signature verification
The dist directory uses the project name as prefix (e.g. dist/cli_windows_amd64_v1/), not just the OS name. Co-authored-by: Isaac
1 parent ee00674 commit f3e8b39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Verify Windows binary signatures
8383
run: |
84-
for exe in dist/windows_*/databricks.exe; do
84+
for exe in dist/*_windows_*/databricks.exe; do
8585
echo "=== $exe ==="
8686
java -jar "$JSIGN_JAR" extract --format PEM "$exe"
8787
openssl pkcs7 -in "${exe}.sig.pem" -inform PEM -print_certs -text -noout

0 commit comments

Comments
 (0)