From 3534a2b6cee8ee62e32348817aac2e44c8eb323a Mon Sep 17 00:00:00 2001 From: Labbs Date: Tue, 17 Oct 2023 16:38:34 +0200 Subject: [PATCH] fix build pipeline - back os darwin instead linux --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5c5ba72..934b45b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -31,7 +31,7 @@ jobs: prefix: 'v' - name: Build app - run: CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -a -installsuffix cgo -ldflags="-X 'main.version=${{ steps.version.outputs.full }}'" -o bin/webtty . + run: CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags="-X 'main.version=${{ steps.version.outputs.full }}'" -o bin/webtty . - name: Generate MD5 run: md5sum bin/webtty > bin/webtty.md5