This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b24c2e
commit 8cf84a5
Showing
1 changed file
with
7 additions
and
5 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 |
---|---|---|
@@ -1,9 +1,11 @@ | ||
#!/bin/bash | ||
|
||
VERSION=$(git describe --tags) | ||
|
||
mkdir out | ||
|
||
bash build.sh linux amd64 -o ./out/Fuck163MusicTasks_linux_amd64 | ||
bash build.sh linux arm64 -o ./out/Fuck163MusicTasks_linux_arm64 | ||
bash build.sh windows amd64 -o ./out/Fuck163MusicTasks_windows_amd64.exe | ||
bash build.sh darwin amd64 -o ./out/Fuck163MusicTasks_darwin_amd64 | ||
bash build.sh darwin arm64 -o ./out/Fuck163MusicTasks_darwin_arm64 | ||
bash build.sh linux amd64 -o "./out/Fuck163MusicTasks_${VERSION}_linux_amd64" | ||
bash build.sh linux arm64 -o "./out/Fuck163MusicTasks_${VERSION}_linux_arm64" | ||
bash build.sh windows amd64 -o "./out/Fuck163MusicTasks_${VERSION}_windows_amd64.exe" | ||
bash build.sh darwin amd64 -o "./out/Fuck163MusicTasks_${VERSION}_darwin_amd64" | ||
bash build.sh darwin arm64 -o "./out/Fuck163MusicTasks_${VERSION}_darwin_arm64" |