// Package cadatlas embeds module-root build artifacts that live outside any // subpackage directory. go:embed cannot reach parent directories, so the CI // workflow — which the atlas parses to generate its CI/CD stage from the real // pipeline — is embedded here at the module root. package cadatlas import _ "embed" // CDWorkflow is the repo's own Gitea Actions workflow, embedded at build time. // //go:embed .gitea/workflows/cd.yml var CDWorkflow []byte