From 931c7119f509fcf429e66950cfaca8e6ae18fec1 Mon Sep 17 00:00:00 2001 From: Lillia Elaine <7863608+LilliaElaine@users.noreply.github.com> Date: Wed, 29 Oct 2025 15:52:33 -0400 Subject: [PATCH] Update go.yml to not have 2 vs when building and publishing files --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a5e75f3..f994bc3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -26,7 +26,7 @@ jobs: run: sudo apt update && sudo apt install -y libusb-1.0-0-dev - name: Build Release - run: go build -v -o go-bsb-cams-v${{ github.ref_name }} -ldflags "-X main.gitVersion=${{ github.ref_name }}" ./... + run: go build -v -o go-bsb-cams-${{ github.ref_name }} -ldflags "-X main.gitVersion=${{ github.ref_name }}" ./... if: github.ref_type == 'tag' - name: Build Non-Release