Skip to content

Commit

Permalink
Merge pull request #202 from cacack/adjust-mac-release-artifacts
Browse files Browse the repository at this point in the history
ci: Align release artifacts with Go naming for Mac
  • Loading branch information
ericzbeard authored Sep 21, 2023
2 parents 33dc5b2 + 09d8320 commit 4080ac5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -eou pipefail

declare -a platforms=(linux/amd64 linux/386 linux/arm darwin/amd64 windows/amd64 windows/386)
declare -A mapping=([darwin]=macos [linux]=linux [windows]=windows [amd64]=amd64 [386]=i386 [arm]=arm)
declare -a platforms=(linux/amd64 linux/386 linux/arm darwin/amd64 darwin/arm64 windows/amd64 windows/386)
declare -A mapping=([darwin]=darwin [linux]=linux [windows]=windows [amd64]=amd64 [386]=i386 [arm]=arm [arm64]=arm64)
declare -a CGO=(0 1)

for platform in "${platforms[@]}"; do
Expand Down
2 changes: 1 addition & 1 deletion internal/config/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ const (
NAME = "Rain"

// VERSION is the application's version string
VERSION = "v1.5.0"
VERSION = "v1.6.0"
)

0 comments on commit 4080ac5

Please sign in to comment.