ci: fix go generate not running in subdirectories (#807)
Changed `go generate ./cmd/picoclaw` to `go generate ./cmd/picoclaw/...` so that the workspace embed in cmd/picoclaw/internal/onboard is correctly generated before building. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a5cc4db514
commit
6a4116b8a0
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ version: 2
|
|||
before:
|
||||
hooks:
|
||||
- go mod tidy
|
||||
- go generate ./cmd/picoclaw
|
||||
- go generate ./cmd/picoclaw/...
|
||||
|
||||
builds:
|
||||
- id: picoclaw
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue