We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14da13f commit a71f3f7Copy full SHA for a71f3f7
.github/workflows/publish.yml
@@ -79,15 +79,16 @@ jobs:
79
CODE_SIGN_CHAIN: ${{ secrets.CODE_SIGN_CHAIN }}
80
CODE_SIGN_KEY: ${{ secrets.CODE_SIGN_KEY }}
81
run: |
82
+ set -ex
83
mkdir signed
84
for artifact in unsigned/azurehound-bin-*/azurehound*; do
85
tgt=$(echo "$artifact" | sed -E 's%.*-([^-]*)/azurehound(.*)%azurehound-\1\2%')
86
osslsigncode sign \
87
-certs <(printenv CODE_SIGN_CHAIN) \
88
-key <(printenv CODE_SIGN_KEY) \
- -n AzureHound
89
- -i https://www.specterops.io/
90
- -in "$artifact"
+ -n AzureHound \
+ -i https://www.specterops.io/ \
91
+ -in "$artifact" \
92
-out "signed/${tgt}"
93
done
94
0 commit comments