From bc7fcc142e96366caf6f2ba0c6575dfd057e89c2 Mon Sep 17 00:00:00 2001 From: Abdhilahi Wabwire <124460109+AbdhilahiRWabwire@users.noreply.github.com> Date: Tue, 7 Jan 2025 21:57:45 -0700 Subject: [PATCH] Fix Workflow --- .github/workflows/go.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index ff9a22e..a299efc 100755 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -8,7 +8,7 @@ on: branches: [ "main" ] schedule: - - cron: "30 03 * * 1-5" + - cron: "30 03 * * 6" jobs: build: @@ -23,5 +23,8 @@ jobs: with: go-version: '1.20' + - name: Tidy Package + run: cd ./server && go mod tidy + - name: Build Package run: GOOS=linux GOARCH=amd64 go build -o ./binary/htdinet ./server/source/main.go