mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-29 18:57:59 +08:00
37 lines
939 B
Bash
Executable File
37 lines
939 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Change version number? [Version number/N]";
|
|
read x
|
|
|
|
if [[ $x =~ ^[1-9].[0-9]+.[0-9]+$ ]]
|
|
then
|
|
sed -i -e "s/const appVersion = \"[0-9].[0-9]\+.[0-9]\+\"/const appVersion = \"$x\"/g" cmd/server/main.go
|
|
sed -i -e "s/@version [0-9].[0-9]\+.[0-9]\+/@version $x/g" cmd/server/main.go
|
|
sed -i -e "s/'[0-9].[0-9]\+.[0-9]\+'/'$x'/g" database/goploy.sql
|
|
sed -i -e "s/GOPLOY_VER=v[0-9].[0-9]\+.[0-9]\+/GOPLOY_VER=v$x/g" docker/Dockerfile
|
|
sed -i -e "s/\"version\": \"[0-9].[0-9]\+.[0-9]\+\"/\"version\": \"$x\"/g" web/package.json
|
|
fi
|
|
|
|
echo "Build web? [Y/N]";
|
|
read x
|
|
|
|
if [ "$x" == Y ] || [ "$x" == y ]
|
|
then
|
|
cd web
|
|
npm run build
|
|
cd ..
|
|
fi
|
|
|
|
|
|
echo "Building goploy";
|
|
|
|
env GOOS=linux go build -o goploy cmd/server/main.go
|
|
|
|
env GOOS=linux GOARCH=arm64 go build -o goploy_arm64 cmd/server/main.go
|
|
|
|
env GOOS=darwin go build -o goploy.mac cmd/server/main.go
|
|
|
|
env GOOS=windows go build -o goploy.exe cmd/server/main.go
|
|
|
|
|