0458c0a838
* secrets now supports bytes * error reporting for unhandled content data types in WriteFile Signed-off-by: Frederick F. Kautz IV <fkautz@alumni.cmu.edu>
21 lines
374 B
CUE
21 lines
374 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
|
|
}
|