mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
60 lines
1.2 KiB
Bash
Executable File
60 lines
1.2 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 rebuild-electron
|
|
|
|
yarn workspace loot-core build:node
|
|
|
|
yarn workspace @actual-app/web 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 --publish never --arm64 --x64
|
|
|
|
echo "\nCreated release"
|
|
else
|
|
SKIP_NOTARIZATION=true yarn build --publish never --x64
|
|
fi
|
|
)
|