fix(ci): add 'go mod tidy' before ./ci-build.sh in the Linux Build step of build.yml (mirrors the test job and release workflow; ensures complete go.sum for 'make build' / go build in the push-triggered Build flow)
All checks were successful
CI / Test (push) Successful in 56s
CI / Build (push) Successful in 40s

This commit is contained in:
Greg Gauthier 2026-06-06 08:17:32 +01:00
parent 66b7f808f7
commit 04a8835d7e

View File

@ -57,7 +57,10 @@ jobs:
run: go mod download run: go mod download
- name: Linux Build - name: Linux Build
run: ./ci-build.sh run: |
go mod tidy
./ci-build.sh
# go mod tidy (like in test job and release build) ensures go.sum is fully populated for this Go version before the make build / go build, fixing "missing go.sum entry" for legacy deps (configparser, wmenu) and TUI deps (charmbracelet/*)
- name: Verify binary - name: Verify binary
run: | run: |