-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -21,13 +21,13 @@ jobs: | |
run: go mod tidy | ||
|
||
- name: Run Build (x86_64) | ||
run: env GOOS=linux GOARCH=amd64 go build -o build/srd-tools-linux-amd64 ./cmd/srd/main.go | ||
run: env GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o build/srd-tools-linux-amd64 ./cmd/srd/main.go | ||
|
||
- name: Run Build (ARM 64) | ||
run: env GOOS=linux GOARCH=arm64 go build -o build/srd-tools-linux-arm64 ./cmd/srd/main.go | ||
run: env GOOS=linux GOARCH=arm64 CGO_ENABLED=0 go build -o build/srd-tools-linux-arm64 ./cmd/srd/main.go | ||
|
||
- name: Run Build (MacOS Silicon) | ||
run: env GOOS=darwin GOARCH=arm64 go build -o build/srd-tools-darwin-arm64 ./cmd/srd/main.go | ||
run: env GOOS=darwin GOARCH=arm64 CGO_ENABLED=0 go build -o build/srd-tools-darwin-arm64 ./cmd/srd/main.go | ||
|
||
- name: Upload Release Assets | ||
uses: AButler/[email protected] | ||
|