From 01299fdbd5cf52e6fc39466282760e5f9a850a58 Mon Sep 17 00:00:00 2001 From: yellowsink Date: Fri, 29 Nov 2024 22:55:53 +0000 Subject: [PATCH] [ci] this really should be it. --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1516d63..7fe6fd7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,17 +30,17 @@ jobs: run: go get -v - name: Build - run: CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -v -tags static -ldflags "-s -w" + run: CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o install-shelter -v -tags static -ldflags "-s -w" - name: Update executable run: | - chmod +x shelter-installer + chmod +x install-shelter - name: Upload artifact uses: actions/upload-artifact@v4 with: name: installer-linux - path: shelter-installer + path: install-shelter build-mac: runs-on: macos-latest