Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chiefMarlin authored Sep 27, 2024
1 parent ae4601c commit 85963e2
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,27 @@ jobs:
- name: Build binaries
run: |
mkdir -p build
PLATFORMS=("darwin/arm64" "darwin/amd64" "linux/arm64" "linux/amd64" "windows/amd64" "windows/arm64")
PLATFORMS=(
"darwin/arm64"
"darwin/amd64"
"linux/arm64"
"linux/amd64"
"windows/amd64"
"windows/arm64"
"freebsd/386"
"freebsd/amd64"
"freebsd/arm"
"freebsd/arm64"
"openbsd/386"
"openbsd/amd64"
"openbsd/arm"
"openbsd/arm64"
"dragonfly/amd64"
"netbsd/386"
"netbsd/amd64"
"netbsd/arm"
"netbsd/arm64"
)
for PLATFORM in "${PLATFORMS[@]}"; do
GOOS=${PLATFORM%/*}
GOARCH=${PLATFORM#*/}
Expand Down

0 comments on commit 85963e2

Please sign in to comment.