513638a40b
Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
22 lines
346 B
CUE
22 lines
346 B
CUE
package main
|
|
|
|
import "alpha.dagger.io/europa/dagger/engine"
|
|
|
|
engine.#Plan & {
|
|
actions: {
|
|
scratch: engine.#Scratch
|
|
|
|
data: engine.#WriteFile & {
|
|
input: scratch.output
|
|
path: "/test"
|
|
permissions: 0o600
|
|
contents: "foobar"
|
|
}
|
|
}
|
|
|
|
outputs: directories: test: {
|
|
contents: actions.data.output
|
|
dest: "./out"
|
|
}
|
|
}
|