1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-08-11 17:50:58 +00:00

fix #24 - support both branch refs and hash refs

This commit is contained in:
Casey Lee 2019-01-31 00:18:52 -08:00
parent 3797a9b42e
commit 4e66f2c8be
4 changed files with 32 additions and 10 deletions

View file

@ -10,7 +10,7 @@ action "build" {
action "test" {
uses = "docker://ubuntu:18.04"
args = "echo 'test'"
args = "env"
needs = ["build"]
}