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:
Snider 2026-02-02 01:44:19 +00:00
parent 45275246b4
commit f8805300ce
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View file

@ -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/

View file

@ -0,0 +1 @@
placeholder for build