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/tests/plan/outputs/outputs.cue
Joel Longtine 3003b31be3 Make engine.#Scratch a specialization of #FS, rather than a task
Signed-off-by: Joel Longtine <joel@dagger.io>
2022-01-07 15:43:58 -07:00

20 lines
319 B
CUE

package main
import "alpha.dagger.io/europa/dagger/engine"
engine.#Plan & {
actions: {
data: engine.#WriteFile & {
input: engine.#Scratch
path: "/test"
permissions: 0o600
contents: "foobar"
}
}
outputs: directories: test: {
contents: actions.data.output
dest: "./out"
}
}