Anki/tools/build
Damien Elmes 246fa75a35 Create release wheel as part of normal build
Avoids the need for a separate publish
2025-06-21 19:17:48 +07:00

8 lines
138 B
Bash
Executable file

#!/bin/bash
set -eo pipefail
rm -rf out/wheels/*
RELEASE=2 ./ninja wheels
(cd qt/release && ./build.sh)
echo "wheels are in out/wheels"