mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2025-03-08 10:10:49 +00:00
15 lines
219 B
HCL
15 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"]
|
|
}
|