Skip to content

Commit a71f3f7

Browse files
authored
Update publish.yml
1 parent 14da13f commit a71f3f7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/publish.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,16 @@ jobs:
7979
CODE_SIGN_CHAIN: ${{ secrets.CODE_SIGN_CHAIN }}
8080
CODE_SIGN_KEY: ${{ secrets.CODE_SIGN_KEY }}
8181
run: |
82+
set -ex
8283
mkdir signed
8384
for artifact in unsigned/azurehound-bin-*/azurehound*; do
8485
tgt=$(echo "$artifact" | sed -E 's%.*-([^-]*)/azurehound(.*)%azurehound-\1\2%')
8586
osslsigncode sign \
8687
-certs <(printenv CODE_SIGN_CHAIN) \
8788
-key <(printenv CODE_SIGN_KEY) \
88-
-n AzureHound
89-
-i https://www.specterops.io/
90-
-in "$artifact"
89+
-n AzureHound \
90+
-i https://www.specterops.io/ \
91+
-in "$artifact" \
9192
-out "signed/${tgt}"
9293
done
9394

0 commit comments

Comments
 (0)