Skip to content

Commit

Permalink
fix (ci): broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-kerjean committed Jan 18, 2024
1 parent 404e9a5 commit 9850003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
run: |
CGO_ENABLED=0 GOARCH="amd64" GOOS="linux" go build -o dist/webpty_linux_amd64.bin main.go
CGO_ENABLED=0 GOARCH="arm" GOARM=7 GOOS="linux" go build -o dist/webpty_linux_arm.bin main.go
CGO_ENABLED=0 GOOS=darwin go build -o dist/webpty_mac_amd64.bin main.go
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 dist/webpty_mac_arm.bin main.go
CGO_ENABLED=0 GOOS="darwin" GOARCH="amd64" go build -o dist/webpty_mac_amd64.bin main.go
CGO_ENABLED=0 GOOS="darwin" GOARCH="arm64" go build -o dist/webpty_mac_arm.bin main.go
- name: Test
run: go test ./...
Expand Down

0 comments on commit 9850003

Please sign in to comment.