-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add script for building releases
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
echo "Building for linux amd64..." | ||
GOOS=linux GOARCH=amd64 go build -o gg-linux-amd64 ./cmd/gg/ | ||
echo "Building for linux arm64..." | ||
GOOS=linux GOARCH=arm64 go build -o gg-linux-arm64 ./cmd/gg/ | ||
echo "Building for windows amd64..." | ||
GOOS=windows GOARCH=amd64 go build -o gg-windows-amd64.exe ./cmd/gg/ | ||
echo "Building for windows arm64..." | ||
GOOS=windows GOARCH=arm64 go build -o gg-windows-arm64.exe ./cmd/gg/ | ||
echo "Building for darwin amd64..." | ||
GOOS=darwin GOARCH=amd64 go build -o gg-darwin-amd64 ./cmd/gg/ | ||
echo "Building for darwin arm64..." | ||
GOOS=darwin GOARCH=arm64 go build -o gg-darwin-arm64 ./cmd/gg/ |