This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/dagger/dagger.cue
Andrea Luzzardi 1a3dc3debc dagger spec: fix Artifact definition
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2021-03-31 14:20:31 -07:00

19 lines
361 B
CUE

package dagger
import (
"dagger.io/llb"
)
// An artifact such as source code checkout, container image, binary archive...
// May be passed as user input, or computed by a buildkit pipeline
#Artifact: {
#compute: [...llb.#Op]
_
...
}
// Secret value
// FIXME: currently aliased as a string to mark secrets
// this requires proper support.
#Secret: string