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

19 lines
361 B
CUE
Raw Normal View History

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