From 58b228a28cb7f40c64b76cdab9a33a02ab00406e Mon Sep 17 00:00:00 2001 From: nxtcoder17 Date: Sat, 19 Oct 2024 22:05:32 +0530 Subject: [PATCH] ci: fixes go build arguments in github actions --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f68ab26..4cd729a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,7 +68,7 @@ jobs: CGO_ENABLED: 0 run: |+ binary=bin/run-${{ matrix.platform }}-${{ matrix.arch }} - go build -o $binary -ldflags="-s -w" -tags urfave_cli_no_docs cmd/run/main.go + go build -o $binary -ldflags="-s -w" -tags urfave_cli_no_docs ./cmd/run if [ "${{ matrix.platform }}" = "linux" ]; then upx $binary