19 lines
414 B
CUE
19 lines
414 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
|
|
|
|
// FIXME (perf). See https://github.com/dagger/dagger/issues/445
|
|
#Artifact: _
|
|
|
|
// Secret value
|
|
// FIXME: currently aliased as a string to mark secrets
|
|
// this requires proper support.
|
|
#Secret: {
|
|
string | bytes
|
|
}
|