This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

ci(just): fix version not set correctly in build

+2 -2
+2 -2
Justfile
··· 6 6 go fmt 7 7 go run server/*.go 8 8 9 - build output="bin/server" tag="{{current_version}}": 9 + build output="bin/server": 10 10 echo "Building version {{current_version}}" 11 11 just genprisma 12 12 go mod tidy 13 - go build -v -ldflags="-X main.Version={{tag}}" -o {{output}} server/*.go 13 + go build -v -ldflags="-X main.Version={{current_version}}" -o {{output}} server/*.go 14 14 15 15 16 16 install: