Skip to content

Commit

Permalink
Darwin ARM64 release support
Browse files Browse the repository at this point in the history
  • Loading branch information
forain committed Feb 27, 2024
1 parent 6545ff1 commit e6e7922
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ builds:
ignore:
- goos: darwin
goarch: '386'
- goos: darwin
goarch: arm64
- goos: windows
goarch: arm64
binary: '{{ .ProjectName }}_v{{ .Version }}'
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ install: build

release:
GOOS=darwin go build -v -o terraform-provider-credstash_darwin_amd64
GOOS=darwin go build -v -o terraform-provider-credstash_darwin_arm64
GOOS=linux go build -v -o terraform-provider-credstash_linux_amd64
2 changes: 1 addition & 1 deletion datasource_secrets.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"log"

"github.com/hashicorp/terraform/helper/schema"
"github.com/joshuamorris3/terraform-provider-credstash/credstash"
"github.com/MasteryConnect/terraform-provider-credstash/credstash"
)

func dataSourceSecret() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/joshuamorris3/terraform-provider-credstash
module github.com/MasteryConnect/terraform-provider-credstash

require (
github.com/aws/aws-sdk-go v1.34.5
Expand Down
2 changes: 1 addition & 1 deletion provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
awsbase "github.com/hashicorp/aws-sdk-go-base"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
"github.com/joshuamorris3/terraform-provider-credstash/credstash"
"github.com/MasteryConnect/terraform-provider-credstash/credstash"
)

var _ terraform.ResourceProvider = provider()
Expand Down

0 comments on commit e6e7922

Please sign in to comment.