mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 17:47:00 -05:00
* seperate build folders for easier switching between web and electron builds * gitignore * release notes * one directory back from electron * spelling mistake * Update 3801.md * test * making it correct * huh * urghh * again * account for api bundle which uses electron bundle for some reason * hu- * lets go * remove comment
58 lines
1.1 KiB
Bash
Executable File
58 lines
1.1 KiB
Bash
Executable File
#!/bin/bash -e
|
|
|
|
|
|
ROOT=`dirname $0`
|
|
RELEASE=""
|
|
CI=${CI:-false}
|
|
|
|
cd "$ROOT/.."
|
|
|
|
POSITIONAL=()
|
|
while [[ $# -gt 0 ]]; do
|
|
key="$1"
|
|
|
|
case $key in
|
|
--release)
|
|
RELEASE="production"
|
|
shift
|
|
;;
|
|
*)
|
|
POSITIONAL+=("$1")
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
set -- "${POSITIONAL[@]}"
|
|
|
|
if [ "$OSTYPE" == "msys" ]; then
|
|
if [ $CI != true ]; then
|
|
read -s -p "Windows certificate password: " -r CSC_KEY_PASSWORD
|
|
export CSC_KEY_PASSWORD
|
|
elif [ -n "$CIRCLE_TAG" ]; then
|
|
# We only want to run this on CircleCI as Github doesn't have the CSC_KEY_PASSWORD secret set.
|
|
certutil -f -p ${CSC_KEY_PASSWORD} -importPfx ~/windows-shift-reset-llc.p12
|
|
fi
|
|
fi
|
|
|
|
yarn workspace loot-core build:node
|
|
|
|
yarn workspace @actual-app/web build --mode=desktop # electron specific build
|
|
|
|
yarn workspace desktop-electron update-client
|
|
|
|
(
|
|
cd packages/desktop-electron;
|
|
yarn clean;
|
|
|
|
if [ "$RELEASE" == "production" ]; then
|
|
if [ -f ../../.secret-tokens ]; then
|
|
source ../../.secret-tokens
|
|
fi
|
|
yarn build
|
|
|
|
echo "\nCreated release"
|
|
else
|
|
SKIP_NOTARIZATION=true yarn build
|
|
fi
|
|
)
|