mirror of
https://github.com/yuzu-emu/liftinstall
synced 2024-11-23 18:14:03 +00:00
14 lines
219 B
HCL
14 lines
219 B
HCL
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"]
|
|
}
|