Skip to content

Commit 250829d

Browse files
committed
fix: remove $GOOS from release task (build only for linux)
1 parent d516555 commit 250829d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
mkdir -p dist
6060
for GOARCH in amd64 arm64; do
6161
bin="dist/drawbridge-linux-${GOARCH}"
62-
GOOS=$GOOS GOARCH=$GOARCH CGO_ENABLED=0 go build -o "$bin" .
62+
GOOS=linux GOARCH=$GOARCH CGO_ENABLED=0 go build -o "$bin" .
6363
done
6464
6565
- name: Publish release

0 commit comments

Comments
 (0)