2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/scripts/publish-mac-arm.sh
18alantom 8a1392e533 chore: bump lint dependencies
- add code mirror dependencies to silence warning
- bump node version to allow execa
2023-06-21 13:35:42 +05:30

44 lines
910 B
Bash
Executable File

# #! /bin/zsh
set -e
# Check node and yarn versions
YARN_VERSION=$(yarn --version)
if [ "$YARN_VERSION" != "1.22.18" ]; then
echo "Incorrect yarn version: $YARN_VERSION"
exit 1
fi
# Source secrets
source .env.publish
# Create folder for the publish build
cd ../
rm -rf build_publish
mkdir build_publish
cd build_publish
# Clone and cd into books
git clone https://github.com/frappe/books --depth 1
cd books
# Copy creds to log_creds.txt
echo $ERR_LOG_KEY > log_creds.txt
echo $ERR_LOG_SECRET >> log_creds.txt
echo $ERR_LOG_URL >> log_creds.txt
echo $TELEMETRY_URL >> log_creds.txt
# Install Dependencies
yarn install
# Set .env and build
export GH_TOKEN=$GH_TOKEN &&
export CSC_IDENTITY_AUTO_DISCOVERY=true &&
export APPLE_ID=$APPLE_ID &&
export APPLE_TEAM_ID=$APPLE_TEAM_ID &&
export APPLE_APP_SPECIFIC_PASSWORD=$APPLE_APP_SPECIFIC_PASSWORD &&
yarn build --mac --publish=always
cd ../books