We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0727910 commit 579d151Copy full SHA for 579d151
.github/workflows/release.yaml
@@ -22,4 +22,4 @@ jobs:
22
goos: ${{ matrix.goos }}
23
goarch: ${{ matrix.goarch }}
24
build_command: make clean && make
25
- extra_files: app build
+ extra_files: .env.sample app build
Makefile
@@ -2,6 +2,6 @@ DEFAULT_VERSION=0.1.0-local
2
VERSION := $(or $(VERSION),$(DEFAULT_VERSION))
3
4
cmd:
5
- cd server && go build -ldflags "-w -X main.Version=$(VERSION)" -o '../build/server'
+ cd server && CGO_ENABLED=1 go build -ldflags "-w -X main.Version=$(VERSION)" -o '../build/server'
6
clean:
7
rm -rf build
0 commit comments