Skip to content

Commit

Permalink
Merge pull request #15 from owenrumney/fixing-window
Browse files Browse the repository at this point in the history
add windows build
  • Loading branch information
owenrumney authored Feb 7, 2021
2 parents 1449df4 + bfcff75 commit b8c3c74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
file:
- bin/squealer.darwin.amd64.$TRAVIS_TAG
- bin/squealer.linux.amd64.$TRAVIS_TAG
- bin/squealer.windows.amd64.$TRAVIS_TAG
- bin/squealer.windows.amd64.$TRAVIS_TAG.exe
on:
repo: owenrumney/squealer
tags: true
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ args=(-ldflags "-X github.com/owenrumney/squealer/version.Version=${TAG} -s -w -

GOOS=darwin GOARCH=amd64 go build -o "bin/squealer.darwin.amd64.${TAG}" "${args[@]}" ./cmd/squealer/
GOOS=linux GOARCH=amd64 go build -o "bin/squealer.linux.amd64.${TAG}" "${args[@]}" ./cmd/squealer/
GOOS=windows GOARCH=amd64 go build -o "bin/squealer.windows.amd64.exe.${TAG}" "${args[@]}" ./cmd/squealer/
GOOS=windows GOARCH=amd64 go build -o "bin/squealer.windows.amd64.${TAG}.exe" "${args[@]}" ./cmd/squealer/

0 comments on commit b8c3c74

Please sign in to comment.