Skip to content

Commit

Permalink
Merge branch 'fix/darwin-m1' into 'master'
Browse files Browse the repository at this point in the history
fix: add darwin_arm64 support

See merge request cshield.tech/infra/terraform-provider-dyn!22
  • Loading branch information
xabufr committed Apr 29, 2022
2 parents e101dfc + 7d70157 commit 61dda82
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.16
-
name: Import GPG key
id: import_gpg
Expand All @@ -39,7 +39,7 @@ jobs:
PASSPHRASE: ${{ secrets.PASSPHRASE }}
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2.5.0
uses: goreleaser/goreleaser-action@v2.9.1
with:
version: latest
args: release --rm-dist
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.3.5 (April 28, 2022)

IMPROVEMENTS:

* Fix #3 Support darwin on arm64

## 1.3.4 (August 5, 2021)

IMPROVEMENTS:
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ build:
go build -o ${BINARY}

release:
GOOS=darwin GOARCH=arm64 go build -o ./bin/${BINARY}_${VERSION}_darwin_arm64
GOOS=darwin GOARCH=amd64 go build -o ./bin/${BINARY}_${VERSION}_darwin_amd64
GOOS=freebsd GOARCH=386 go build -o ./bin/${BINARY}_${VERSION}_freebsd_386
GOOS=freebsd GOARCH=amd64 go build -o ./bin/${BINARY}_${VERSION}_freebsd_amd64
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Requirements
------------

- [Terraform](https://www.terraform.io/downloads.html) (works with 0.15.x)
- [Go](https://golang.org/doc/install) (works with 1.14) (to build the provider plugin)
- [Go](https://golang.org/doc/install) (works with 1.16) (to build the provider plugin)
- make


Expand Down

0 comments on commit 61dda82

Please sign in to comment.