fix: Forgot type property on os-release type spec

This commit is contained in:
Gerald Pinder 2025-07-17 13:26:15 -04:00
parent 1e6588c5dc
commit 107625e140

View file

@ -8,6 +8,11 @@ model OsReleaseLatest {
@jsonSchema("/modules/os-release-v1.json")
model OsReleaseV1 {
/** The `os-release` module offers a way to modify and set values in the `/etc/os-release` file in your image.
* https://blue-build.org/reference/modules/os-release/
*/
type: "os-release" | "os-release@v1" | "os-release@latest";
/** The properties of the `/etc/os-release` file to set. */
properties: Record<string>;
}