Skip to content

Commit 32fbb76

Browse files
Add checksums for executable binaries in addition to existing .zip checksums
1 parent 016e1a4 commit 32fbb76

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ jobs:
4545
name: azurehound-bin-${{ matrix.os }}-${{ matrix.arch }}
4646
path: azurehound*
4747

48+
- name: Create Executable Checksums
49+
run: |
50+
file=$(ls azurehound*)
51+
sha256sum $file > ${file}.sha256
52+
4853
- name: Zip
4954
run: 7z a -tzip -mx9 ${{ env.FILE_NAME }}.zip azurehound*
5055

@@ -135,6 +140,12 @@ jobs:
135140
osslsigncode verify -CAfile cert-chain.pem "$artifact"
136141
done
137142
143+
- name: Create Executable Checksums
144+
run: |
145+
cd signed
146+
file=$(ls azurehound*)
147+
sha256sum $file > ${file}.sha256
148+
138149
- name: Zip Signed Executables
139150
run: |
140151
mkdir zipped

0 commit comments

Comments
 (0)