Skip to content

Commit

Permalink
add build script
Browse files Browse the repository at this point in the history
  • Loading branch information
juunini committed Feb 18, 2024
1 parent c8ad96c commit 760731c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
go.work

.env
out
6 changes: 6 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
GOOS=windows GOARCH=amd64 go build -o out/palworld-discord-bot.exe
GOOS=linux GOARCH=amd64 go build -o out/palworld-discord-bot-linux
GOOS=linux GOARCH=386 go build -o out/palworld-discord-bot-linux-386
GOOS=linux GOARCH=arm64 go build -o out/palworld-discord-bot-linux-arm
GOOS=darwin GOARCH=amd64 go build -o out/palworld-discord-bot-macos
GOOS=darwin GOARCH=arm64 go build -o out/palworld-discord-bot-macos-apple-silicon

0 comments on commit 760731c

Please sign in to comment.