You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: resolve wkg TOML configuration format error (#11)
Update wkg rule implementations to use correct TOML format for newer
wkg versions. The previous format used incompatible registry configuration
syntax that caused parse errors.
Changes:
- Update wkg_fetch rule to use `default_registry = "url"` format
- Update wkg_lock rule to use simplified registry configuration
- Update wkg_publish rule to use correct TOML syntax
- Update wkg_registry_config to use newer field names
The newer wkg version expects `default_registry` field instead of the
legacy `[registry] default = "name"` section format. This change maintains
compatibility with complex multi-registry configurations while fixing
simple single-registry use cases.
Also re-enables wkg smoke tests in Linux CI now that TOML parsing works.
The tests require the Docker registry service that runs on Linux CI.
Fixes: wkg unit test failures with "invalid type: string, expected struct"
Result: All wkg smoke tests now pass and are included in CI validation
0 commit comments