Skip to content

Commit 540225f

Browse files
authored
Merge pull request #318 from appwrite/dev
fix(publish): verify-windows-signatures resilient under errexit
2 parents 81fbffd + 3b175cd commit 540225f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ jobs:
9999
verify_signature() {
100100
local file="$1"
101101
local output rc
102-
output="$(osslsigncode verify -in "$file" 2>&1)"
103-
rc=$?
102+
rc=0
103+
output="$(osslsigncode verify -in "$file" 2>&1)" || rc=$?
104104
echo "--- $file (osslsigncode exit $rc) ---"
105105
echo "$output"
106106

0 commit comments

Comments
 (0)