Skip to content

Commit 28d2072

Browse files
author
Ronnie Flathers
committed
add archives of binaries to artifacts
1 parent 518b9b8 commit 28d2072

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.circleci/config.yml

+10
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ jobs:
2929
command: |
3030
ARCH=$(uname -m)
3131
find dist/ -type f -exec mv {} {}_linux_$ARCH \;
32+
- run:
33+
name: Tarball binaries
34+
command: |
35+
tar czf impacket_linux_binaries.tar.gz -C dist/ .
36+
mv impacket_linux_binaries.tar.gz dist/
3237
- run:
3338
name: Write version.txt
3439
command: |
@@ -57,6 +62,11 @@ jobs:
5762
name: rename binaries
5863
command: |
5964
for f in dist/*.exe; do mv "$f" "${f%.*}_windows.${f##*.}"; done
65+
- run:
66+
name: zip binaries
67+
command: |
68+
zip -r impacket_windows_binaries.zip dist/
69+
mv impacket_windows_binaries.zip dist/
6070
- store_artifacts:
6171
path: ./dist
6272
- persist_to_workspace:

0 commit comments

Comments
 (0)