Skip to content

Commit

Permalink
Merge pull request #58 from nats-io/arch-bins
Browse files Browse the repository at this point in the history
[FIX] added binaries to match nats-server
  • Loading branch information
aricart authored Sep 18, 2023
2 parents 9fb4151 + 53c0777 commit 3e454c8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pushes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
strategy:
matrix:
include:
- go: '1.20.x'
- go: '1.21.x'
os: ubuntu-latest
canonical: true
- go: '1.19.x'
- go: '1.20.x'
os: ubuntu-latest
canonical: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.19'
go-version: '1.21'
check-latest: true

- name: Basic integrity checks
Expand Down
21 changes: 21 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,26 @@ builds:
- darwin
- linux
- windows
- freebsd
goarch:
- amd64
- arm
- arm64
- 386
- mips64le
- s390x
goarm:
- 6
- 7
ignore:
- goos: darwin
goarch: 386
- goos: freebsd
goarch: arm
- goos: freebsd
goarch: arm64
- goos: freebsd
goarch: 386

dist: build

Expand All @@ -24,6 +42,9 @@ archives:
}}v{{ .Arm }}{{ end }}'
wrap_in_directory: true
format: zip
files:
- README.md
- LICENSE

checksum:
name_template: '{{ .ProjectName }}-v{{ .Version }}-checksums.txt'
Expand Down
2 changes: 1 addition & 1 deletion nkeys.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package nkeys
import "io"

// Version is our current version
const Version = "0.4.4"
const Version = "0.4.5"

// KeyPair provides the central interface to nkeys.
type KeyPair interface {
Expand Down

0 comments on commit 3e454c8

Please sign in to comment.