fix #128: guard against empty actionName when 'uses: ./' (#130)

* fix #128: guard against empty actionName when 'uses: ./'

* fix #129 - force image name to be lowercase
This commit is contained in:
Casey Lee
2020-03-06 10:17:20 -08:00
committed by GitHub
parent 1f9f3b826e
commit c32a87c6dc
2 changed files with 7 additions and 2 deletions

View File

@@ -238,7 +238,7 @@ func NewGitCloneExecutor(input NewGitCloneExecutorInput) Executor {
Force: true,
})
if err != nil && err.Error() != "already up-to-date" {
logger.Errorf("Unable to pull %s: %v", refName, err)
logger.Debugf("Unable to pull %s: %v", refName, err)
}
logger.Debugf("Cloned %s to %s", input.URL, input.Dir)