fix(ci): add placeholder for missing demo-track.smsg
The build was failing because `pkg/player/assets.go` embeds `frontend/demo-track.smsg`, which was ignored by git and missing in the repository checkout. This commit: - Adds a placeholder `pkg/player/frontend/demo-track.smsg` file. - Updates `.gitignore` to explicitly track this specific file while keeping the global ignore rule. This ensures `go:embed` can find the file during build/test in CI environments.
This commit is contained in:
parent
45275246b4
commit
f8805300ce
2 changed files with 2 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -7,6 +7,7 @@ coverage.txt
|
||||||
|
|
||||||
# Demo content (hosted on CDN)
|
# Demo content (hosted on CDN)
|
||||||
demo-track.smsg
|
demo-track.smsg
|
||||||
|
!pkg/player/frontend/demo-track.smsg
|
||||||
|
|
||||||
# Dev artifacts
|
# Dev artifacts
|
||||||
.playwright-mcp/
|
.playwright-mcp/
|
||||||
|
|
|
||||||
1
pkg/player/frontend/demo-track.smsg
Normal file
1
pkg/player/frontend/demo-track.smsg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
placeholder for build
|
||||||
Loading…
Add table
Reference in a new issue