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)
This commit is contained in:
parent
66b7f808f7
commit
04a8835d7e
@ -57,7 +57,10 @@ jobs:
|
||||
run: go mod download
|
||||
|
||||
- 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
|
||||
run: |
|
||||
|
||||
Loading…
Reference in New Issue
Block a user