Skip to content

Commit

Permalink
fix(plugin): update docs and remove invalid build arg
Browse files Browse the repository at this point in the history
  • Loading branch information
FalcoSuessgott committed Jun 5, 2024
1 parent 5dce3ec commit f461d04
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ builds:
flags:
- -trimpath
ldflags:
- '-s -w -X main.Version={{.Version}} -X main.VersionPrerelease= '
- '-s -w -X main.Version={{.Version}}'
targets:
- linux_amd64
-
Expand All @@ -22,7 +22,7 @@ builds:
flags:
- -trimpath
ldflags:
- '-s -w -X main.Version={{.Version}} -X main.VersionPrerelease= '
- '-s -w -X main.Version={{.Version}}'
binary: "{{ .ProjectName }}_v{{ .Version }}_{{ .Env.PACKER_PROTOCOL_VERSION }}_{{ .Os }}_{{ .Arch }}"
goos:
- freebsd
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ packer {
required_plugins {
goss = {
version = "3.2.0"
version = "~> 3"
source = "github.com/YaleUniversity/goss"
}
}
Expand Down
10 changes: 10 additions & 0 deletions packer.pkr.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
packer {
required_version = ">= 1.9.0"

required_plugins {
goss = {
version = "~> 3"
source = "github.com/YaleUniversity/goss"
}
}
}

0 comments on commit f461d04

Please sign in to comment.