Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gepetto
dashboard
Commits
f9dbc42e
Commit
f9dbc42e
authored
May 16, 2018
by
Guilhem Saurel
Browse files
fix docker tags: use lower case
parent
6bc454ec
Pipeline
#705
passed with stages
in 56 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/models.py
View file @
f9dbc42e
...
...
@@ -619,7 +619,8 @@ class Image(models.Model):
def
get_image_name
(
self
):
project
=
self
.
robotpkg
.
project
return
f
'
{
project
.
registry
()
}
/
{
project
.
main_namespace
.
slug
}
/
{
project
}
:
{
self
.
target
}
'
project_name
=
project
.
name
.
lower
()
return
f
'
{
project
.
registry
()
}
/
{
project
.
main_namespace
.
slug
}
/
{
project_name
}
:
{
self
.
target
}
'
def
build
(
self
):
args
=
self
.
get_build_args
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment