diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9d450e7..c82649f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
         run: go get ./...
 
       - name: Build
-        run: go build -v .
+        run: go build -ldflags="-s -w" -gcflags=all="-l -B" -trimpath -buildvcs=false -v .
 
       - name: Go Test
         run: go test -v ./...
@@ -83,9 +83,7 @@ jobs:
           sudo apt-get install -y libasound2-dev
 
       - name: Build
-        run: |
-          go build -ldflags="-s -w" -gcflags=all="-l -B" -trimpath -buildvcs=false -o goqoa-linux -v .
-          upx --best goqoa-linux
+        run: go build -ldflags="-s -w" -gcflags=all="-l -B" -trimpath -buildvcs=false -o goqoa-linux -v .
 
       - name: Go Test
         run: go test -v ./...