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 6a7b5f3337 cue fmt
Signed-off-by: Joel Longtine <joel@dagger.io>
2022-01-07 15:50:24 -07:00

18 lines
307 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"
}
}