mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-19 05:30:06 +08:00
* Static linking on Windows * build Qt static with actions --------- Co-authored-by: Nova <mahdi.zrei@gmail.com>
21 lines
322 B
Bash
Executable File
21 lines
322 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source script/env_deploy.sh
|
|
DEST=$DEPLOYMENT/windows64
|
|
rm -rf $DEST
|
|
mkdir -p $DEST
|
|
|
|
#### copy exe ####
|
|
cp $BUILD/nekoray.exe $DEST
|
|
|
|
cd download-artifact
|
|
cd *windows-amd64
|
|
tar xvzf artifacts.tgz -C ../../
|
|
cd ..
|
|
cd *public_res
|
|
tar xvzf artifacts.tgz -C ../../
|
|
cd ../..
|
|
|
|
mv $DEPLOYMENT/public_res/* $DEST
|