fix: Ensure image names are lowercase

This commit is contained in:
Gerald Pinder 2024-09-08 09:39:38 -04:00
parent d4b511ebdb
commit 8c94473ae3
3 changed files with 20 additions and 5 deletions

View file

@ -123,7 +123,9 @@ impl CiDriver for GithubDriver {
.repository
.owner
.login
))
)
.trim()
.to_lowercase())
}
}