We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acdfe9f commit 705d62bCopy full SHA for 705d62b
.goreleaser.yml
@@ -18,6 +18,8 @@ builds:
18
19
id: "steampipe"
20
binary: "{{ .ProjectName }}.plugin"
21
+ flags:
22
+ - -tags=netgo
23
24
archives:
25
- format: gz
Makefile
@@ -1,2 +1,4 @@
1
+STEAMPIPE_INSTALL_DIR ?= ~/.steampipe
2
+BUILD_TAGS = netgo
3
install:
- go build -o ~/.steampipe/plugins/hub.steampipe.io/plugins/turbot/godaddy@latest/steampipe-plugin-godaddy.plugin *.go
4
+ go build -o $(STEAMPIPE_INSTALL_DIR)/plugins/hub.steampipe.io/plugins/turbot/godaddy@latest/steampipe-plugin-godaddy.plugin -tags "${BUILD_TAGS}" *.go
0 commit comments