We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9612333 commit 6da5f9fCopy full SHA for 6da5f9f
.github/workflows/release-binary.yml
@@ -33,9 +33,12 @@ jobs:
33
export GOOSARCH=${{ matrix.goosarch }}
34
export GOOS=${GOOSARCH%/*}
35
export GOARCH=${GOOSARCH#*/}
36
-
+
37
mkdir -p artifacts
38
39
+ # Issue 152. Explicitly mark the checked-out directory as a safe git dir to enable VCS stamping
40
+ git config --global --add safe.directory /__w/cql-proxy/cql-proxy
41
42
if [ "$GOOS" = "windows" ]; then
43
go build -o cql-proxy.exe
44
zip -vr cql-proxy-${GOOS}-${GOARCH}-${{ github.ref_name }}.zip cql-proxy.exe LICENSE
0 commit comments