diff --git a/bin/package b/bin/package index b932cc474976a1e435e53d1d927120755c130b2f..c403ae9a987deb940ec10752b916b767a5605bbe 100755 --- a/bin/package +++ b/bin/package @@ -88,16 +88,7 @@ yarn workspace loot-core build:node yarn workspace @actual-app/web build - -rm -fr packages/desktop-electron/client-build -cp -r packages/desktop-client/build packages/desktop-electron/client-build -# Remove the embedded backend for the browser version. Will improve -# this process -rm -fr packages/desktop-electron/client-build/data -rm -fr packages/desktop-electron/client-build/*kcab.* -rm -fr packages/desktop-electron/client-build/*.wasm -rm -fr packages/desktop-electron/client-build/*.map - +yarn workspace Actual update-client if [ -n "$RELEASE" ]; then SENTRY_CLI="./packages/desktop-electron/node_modules/.bin/sentry-cli" @@ -133,30 +124,8 @@ fi echo "\nCreated release $VERSION with release notes \"$RELEASE_NOTES\"" elif [ "$RELEASE" == "beta" ]; then yarn build --publish never --arm64 --x64 - - WINDOWS_FILE="./dist/Actual Setup $VERSION.exe" - if [ -f "$WINDOWS_FILE" ]; then - scp "$WINDOWS_FILE" "jlongster.com:/sites/static.actualbudget/Actual-Setup-$VERSION.exe" - echo "Windows: https://static.actualbudget.com/Actual-Setup-$VERSION.exe" - else - echo "No Windows file found" - fi - - MAC_FILE="./dist/Actual-$VERSION.dmg" - if [ -f "$MAC_FILE" ]; then - scp "$MAC_FILE" "jlongster.com:/sites/static.actualbudget.com/Actual-$VERSION.dmg" - echo "macOS: https://static.actualbudget.com/Actual-$VERSION.dmg" - else - echo "No macOS file found" - fi - - LINUX_FILE="./dist/Actual-$VERSION-x86_64.AppImage" - if [ -f "$LINUX_FILE" ]; then - scp "$LINUX_FILE" "jlongster.com:/sites/static.actualbudget/Actual-$VERSION-x86_64.AppImage" - echo "Linux: https://static.actualbudget.com/Actual-$VERSION-x86_64.AppImage" - else - echo "No linux file found" - fi + + echo "\nCreated beta release $VERSION" else SKIP_NOTARIZATION=true yarn build --publish never --x64 fi diff --git a/packages/desktop-electron/bin/update-client b/packages/desktop-electron/bin/update-client new file mode 100755 index 0000000000000000000000000000000000000000..3560b0bcf08a4c01e461258a67533962b9c31259 --- /dev/null +++ b/packages/desktop-electron/bin/update-client @@ -0,0 +1,13 @@ +#!/bin/bash -e + +ROOT=`dirname $0`/.. + +rm -rf ${ROOT}/client-build +cp -r ${ROOT}/../desktop-client/build ${ROOT}/client-build + +# Remove the embedded backend for the browser version. Will improve +# this process +rm -rf ${ROOT}/client-build/data +rm -rf ${ROOT}/client-build/*kcab.* +rm -rf ${ROOT}/client-build/*.wasm +rm -rf ${ROOT}/client-build/*.map diff --git a/packages/desktop-electron/package.json b/packages/desktop-electron/package.json index f6890d4dd54389f1850bf425e3a0e800f6d04858..5375f6a4690add9f632ebfbd72f9883817e84cf1 100644 --- a/packages/desktop-electron/package.json +++ b/packages/desktop-electron/package.json @@ -6,6 +6,7 @@ "version": "22.12.03", "scripts": { "clean": "rm -rf dist", + "update-client": "bin/update-client", "build": "electron-builder", "watch": "cross-env ACTUAL_DOCUMENT_DIR=\"../../data\" ACTUAL_DATA_DIR=\"../../data\" electron ." },