Switch to GitHub Actions for Windows and macOS builds

This commit is contained in:
Cameron Gutman
2025-10-26 12:31:33 -05:00
parent 7d544c1ce4
commit 68aa04926e
8 changed files with 157 additions and 40 deletions
+6 -1
View File
@@ -16,7 +16,12 @@ SOURCE_ROOT=$PWD
BUILD_FOLDER=$BUILD_ROOT/build-$BUILD_CONFIG
DEPLOY_FOLDER=$BUILD_ROOT/deploy-$BUILD_CONFIG
INSTALLER_FOLDER=$BUILD_ROOT/installer-$BUILD_CONFIG
VERSION=`cat $SOURCE_ROOT/app/version.txt`
if [ -n "$CI_VERSION" ]; then
VERSION=$CI_VERSION
else
VERSION=`cat $SOURCE_ROOT/app/version.txt`
fi
echo Cleaning output directories
rm -rf $BUILD_FOLDER