Switch to GitHub Actions for Windows and macOS builds
This commit is contained in:
parent
7d544c1ce4
commit
68aa04926e
8 changed files with 157 additions and 40 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue