mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-02-22 14:45:58 +01:00
50 lines
1.1 KiB
Bash
Executable File
50 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
export TZ=UTC
|
|
|
|
if [ ! -f "DiscordHistoryTracker.sln" ]; then
|
|
echo "Missing DiscordHistoryTracker.sln in working directory!"
|
|
exit 1
|
|
fi
|
|
|
|
makezip() {
|
|
BIN_PATH="$(pwd)/bin"
|
|
|
|
pushd "$BIN_PATH/$1"
|
|
|
|
find . -type d -exec chmod 755 {} \;
|
|
find . -type f -exec chmod 644 {} \;
|
|
|
|
chmod -f 755 DiscordHistoryTracker || true
|
|
chmod -f 755 DiscordHistoryTracker.exe || true
|
|
|
|
find . -type f | sort | zip -9 -X "$BIN_PATH/$1.zip" -@
|
|
|
|
popd
|
|
}
|
|
|
|
rm -rf "./bin"
|
|
|
|
dedicated_runtimes=(win-x64 linux-x64)
|
|
skipped_portable_runtimes=(browser-wasm linux-mips64 linux-s390x linux-ppc64le)
|
|
|
|
# Dedicated Runtimes
|
|
|
|
for cfg in "${dedicated_runtimes[@]}"; do
|
|
dotnet publish Desktop -c Release -r "$cfg" -o "./bin/$cfg" --self-contained true
|
|
makezip "$cfg"
|
|
done
|
|
|
|
# Portable
|
|
|
|
dotnet publish Desktop -c Release -o "./bin/portable" -p:PublishSingleFile=false -p:PublishTrimmed=false --self-contained false
|
|
|
|
rm "./bin/portable/DiscordHistoryTracker"
|
|
|
|
for runtime in "${skipped_portable_runtimes[@]}"; do
|
|
rm -rf "./bin/portable/runtimes/$runtime"
|
|
done
|
|
|
|
makezip "portable"
|