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.
Files
dagger/stdlib/dagger/dagger.cue
Solomon Hykes b526093929 stdlib: simpler and cleaner performance workaround
Signed-off-by: Solomon Hykes <solomon@dagger.io>
2021-05-13 22:36:06 -07:00

22 lines
375 B
CUE

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 | bytes
}