Skip to content

Commit

Permalink
fix(build): reintroduce 386 builds
Browse files Browse the repository at this point in the history
it turns out this was an issue with goreleaser,
not with the 386 builds themselves.
  • Loading branch information
JanDeDobbeleer committed Nov 4, 2024
1 parent 0b76bea commit 45c7bf3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/.goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ before:
hooks:
- go mod tidy
- go install github.com/tc-hib/go-winres@latest
- go-winres make --product-version=git-tag --file-version=git-tag --arch="amd64,arm64"
- go-winres make --product-version=git-tag --file-version=git-tag --arch="amd64,386,arm64"
builds:
-
binary: "posh-{{ .Os }}-{{ .Arch }}"
Expand Down Expand Up @@ -33,7 +33,10 @@ builds:
- amd64
- arm64
- arm
- "386"
ignore:
- goos: darwin
goarch: "386"
- goos: darwin
goarch: arm
- goos: windows
Expand Down

0 comments on commit 45c7bf3

Please sign in to comment.