diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..f4446c3 --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +GOOS=windows GOARCH=amd64 go build -o cln.exe . +GOOS=linux GOARCH=amd64 go build -o cln . diff --git a/release.sh b/release.sh index eddd8f0..5f837ea 100644 --- a/release.sh +++ b/release.sh @@ -16,8 +16,8 @@ fi echo "Tag: $TAG" echo "Building the thing..." -go build . -go install . +sh build.sh +sh install.sh echo "Creating a release..." TOKEN="$GITEA_API_KEY"