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
Этот коммит содержится в:
Casey Lee
2020-03-06 10:17:20 -08:00
коммит произвёл GitHub
родитель 1f9f3b826e
Коммит c32a87c6dc
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@@ -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)