fchat-rising/electron/release-scripts/windows.sh

30 lines
633 B
Bash
Raw Permalink Normal View History

2023-09-03 22:24:08 +00:00
#!/bin/bash -ex
if [ -z "${1}" ]
then
echo "Usage: ${0} RELEASE_VERSION"
exit 1
fi
2023-09-03 22:29:02 +00:00
export NODE_OPTIONS=--openssl-legacy-provider
2023-09-03 22:24:08 +00:00
RELEASE_VERSION="${1}"
RELEASE_PATH="${HOME}/fchat-rising-dist/${RELEASE_VERSION}"
DIST_PATH="${HOME}/fchat-rising/electron/dist"
cd "${HOME}/fchat-rising"
git checkout master
git pull
yarn
mkdir -p "${RELEASE_PATH}"
rm -rf "${DIST_PATH}"
cd electron
2024-07-07 00:47:24 +00:00
rm -rf app
2023-09-03 22:24:08 +00:00
yarn build:dist
node pack.js
2023-09-03 22:42:02 +00:00
cp "${DIST_PATH}/arm64/F-Chat-Rising-Setup-win-arm64.exe" "${RELEASE_PATH}/F-Chat-Rising-win-arm64.exe"
2023-09-03 23:01:03 +00:00
cp "${DIST_PATH}/x64/F-Chat-Rising-Setup-win-x64.exe" "${RELEASE_PATH}/F-Chat-Rising-win-x64.exe"