liftinstall/.github/main.workflow

15 lines
219 B
Plaintext
Raw Normal View History

2019-08-27 05:03:29 +00:00
workflow "New workflow" {
on = "push"
resolves = ["new-action"]
}
action "rust" {
uses = "docker://rust:1"
runs = ".travis/build.sh"
}
action "new-action" {
uses = "owner/repo/path@ref"
needs = ["rust"]
}