1
0
mirror of https://gitea.com/gitea/act synced 2026-05-06 01:37:48 +02:00
Files
act/actions/testdata/pipe.workflow
2019-02-06 22:36:13 -08:00

13 lines
210 B
HCL

workflow "test" {
on = "push"
resolves = ["test-action"]
}
action "test-action" {
uses = "docker://alpine:3.9"
runs = ["sh", "-c", "echo $IN | grep $OUT"]
env = {
IN = "foo"
OUT = "foo"
}
}