Skip to content

Commit

Permalink
fix: enabled cgo (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
prgres committed Jun 6, 2024
1 parent df0f42e commit c302876
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: go build -o bin/clickup-tui
run: CGO_ENABLED=1 go build -o bin/clickup-tui

- name: "Tar files"
working-directory: bin
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ fmt:

.PHONY: build
build:
@go build -v .
@CGO_ENABLED=1 go build -v -o bin/clickup-tui

0 comments on commit c302876

Please sign in to comment.