ci: Fix Linux Build Script

This commit is contained in:
MystiPanda
2023-12-07 15:34:49 +08:00
parent a82929996b
commit 7127c4d590
5 changed files with 122 additions and 78 deletions

9
.github/build-for-linux/build.sh vendored Normal file
View File

@@ -0,0 +1,9 @@
# pnpm install --resolution-only
pnpm install
pnpm check $INPUT_TARGET
sed -i "s/#openssl/openssl={version=\"0.10\",features=[\"vendored\"]}/g" src-tauri/Cargo.toml
if [ "$INPUT_TARGET" = "x86_64-unknown-linux-gnu" ]; then
pnpm build --target $INPUT_TARGET
else
pnpm build --target $INPUT_TARGET -b deb
fi