
These artifacts need to be manually signed before distribution. Move them to a dedicated `unsigned/` directory to avoid accidental distribution without signing.
13 lines
187 B
Bash
13 lines
187 B
Bash
cd build
|
|
cpack -G TGZ
|
|
cpack -G DragNDrop
|
|
|
|
case "$CMAKE_CI_PACKAGE" in
|
|
dev)
|
|
;;
|
|
*)
|
|
mkdir -p unsigned
|
|
mv cmake-*-macos*-universal.* unsigned/
|
|
;;
|
|
esac
|