This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
containers/metadata.rules.cue

19 lines
384 B
CUE
Raw Permalink Normal View History

#Spec: {
app: #AppName
semver?: bool
channels: [...#Channels]
}
#Channels: {
name: #ChannelName
platforms: [...#Platforms]
stable: bool
tests: {
enabled: bool
type?: =~"^(cli|web)$"
}
}
#AppName: string & !="" & =~"^[a-zA-Z0-9_-]+$"
#ChannelName: string & !="" & =~"^[a-zA-Z0-9._-]+$"
#Platforms: "linux/amd64" | "linux/arm64"