Skip to content

Commit

Permalink
github: fix pushup exe build action
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsmith committed Oct 20, 2022
1 parent f16766e commit e190344
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
with:
go-version: 1.18
- name: Build
run: go build -v ./... -o pushup
run: go build -o pushup -ldflags "-s -w -extldflags '-static'" -v ./...
env:
CGO_ENABLED: 0
- name: Test
run: go test -v . ./_runtime
- name: Upload Pushup executable
Expand Down

0 comments on commit e190344

Please sign in to comment.