From cb8ca08334db5115e15747c8ae31168646eef34f Mon Sep 17 00:00:00 2001 From: Ned Palacios Date: Sat, 2 Dec 2023 02:46:25 +0800 Subject: [PATCH] ci: fix again --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8ec9e8..7b1bcb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,14 +16,14 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: + go-version-file: server/go.mod go-version: 1.21.4 + - run: go mod download + - name: Change directory to server run: cd server - - name: Download dependencies - run: go mod download - - name: Build binaries (Windows amd64) run: GOOS=windows GOARCH=amd64 go build -o cmd/bugbuddy-windows-amd64.exe .