We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3dae62 commit 6004579Copy full SHA for 6004579
.github/workflows/release-binary.yml
@@ -28,14 +28,16 @@ jobs:
28
- name: Build ${{ matrix.goosarch }} binary
29
run: |
30
apt update
31
- apt -y install zip git
+ apt -y install zip
32
33
export GOOSARCH=${{ matrix.goosarch }}
34
export GOOS=${GOOSARCH%/*}
35
export GOARCH=${GOOSARCH#*/}
36
37
mkdir -p artifacts
38
-
+
39
+ git status
40
41
if [ "$GOOS" = "windows" ]; then
42
go build -o cql-proxy.exe
43
zip -vr cql-proxy-${GOOS}-${GOARCH}-${{ github.ref_name }}.zip cql-proxy.exe LICENSE
0 commit comments