We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 88bd512 + fa6ebe6 commit a68fb5cCopy full SHA for a68fb5c
1 file changed
.github/workflows/release.yml
@@ -1,6 +1,7 @@
1
name: Release
2
3
on:
4
+ workflow_dispatch:
5
push:
6
tags:
7
- "v*"
@@ -57,7 +58,9 @@ jobs:
57
58
file "$binary"
59
file "$binary" | grep -qE "statically linked|static-pie linked"
60
echo "--- ldd output ---"
- ! ldd "$binary" 2>&1 || ldd "$binary" 2>&1 | grep -q "not a dynamic executable"
61
+ ldd_output=$(ldd "$binary" 2>&1 || true)
62
+ echo "$ldd_output"
63
+ echo "$ldd_output" | grep -qE "not a dynamic executable|statically linked"
64
echo "Static linking verified."
65
66
- name: Rename binary
0 commit comments