Commit 3592e2bd authored by Nicolas Dular's avatar Nicolas Dular

Fix path for template logos

This fixes the path for the template logos in the empty pipeline
template experiment.

It now gets picked up by the asset pipeline and renders correctly.
parent 2feffdc1
...@@ -34,39 +34,39 @@ module Ci ...@@ -34,39 +34,39 @@ module Ci
# and will be cleaned up with https://gitlab.com/gitlab-org/gitlab/-/issues/326299 # and will be cleaned up with https://gitlab.com/gitlab-org/gitlab/-/issues/326299
def experiment_suggested_ci_templates def experiment_suggested_ci_templates
[ [
{ name: 'Android', logo: image_path('/assets/illustrations/logos/android.svg') }, { name: 'Android', logo: image_path('illustrations/logos/android.svg') },
{ name: 'Bash', logo: image_path('/assets/illustrations/logos/bash.svg') }, { name: 'Bash', logo: image_path('illustrations/logos/bash.svg') },
{ name: 'C++', logo: image_path('/assets/illustrations/logos/c_plus_plus.svg') }, { name: 'C++', logo: image_path('illustrations/logos/c_plus_plus.svg') },
{ name: 'Clojure', logo: image_path('/assets/illustrations/logos/clojure.svg') }, { name: 'Clojure', logo: image_path('illustrations/logos/clojure.svg') },
{ name: 'Composer', logo: image_path('/assets/illustrations/logos/composer.svg') }, { name: 'Composer', logo: image_path('illustrations/logos/composer.svg') },
{ name: 'Crystal', logo: image_path('/assets/illustrations/logos/crystal.svg') }, { name: 'Crystal', logo: image_path('illustrations/logos/crystal.svg') },
{ name: 'Dart', logo: image_path('/assets/illustrations/logos/dart.svg') }, { name: 'Dart', logo: image_path('illustrations/logos/dart.svg') },
{ name: 'Django', logo: image_path('/assets/illustrations/logos/django.svg') }, { name: 'Django', logo: image_path('illustrations/logos/django.svg') },
{ name: 'Docker', logo: image_path('/assets/illustrations/logos/docker.svg') }, { name: 'Docker', logo: image_path('illustrations/logos/docker.svg') },
{ name: 'Elixir', logo: image_path('/assets/illustrations/logos/elixir.svg') }, { name: 'Elixir', logo: image_path('illustrations/logos/elixir.svg') },
{ name: 'iOS-Fastlane', logo: image_path('/assets/illustrations/logos/fastlane.svg') }, { name: 'iOS-Fastlane', logo: image_path('illustrations/logos/fastlane.svg') },
{ name: 'Flutter', logo: image_path('/assets/illustrations/logos/flutter.svg') }, { name: 'Flutter', logo: image_path('illustrations/logos/flutter.svg') },
{ name: 'Go', logo: image_path('/assets/illustrations/logos/go_logo.svg') }, { name: 'Go', logo: image_path('illustrations/logos/go_logo.svg') },
{ name: 'Gradle', logo: image_path('/assets/illustrations/logos/gradle.svg') }, { name: 'Gradle', logo: image_path('illustrations/logos/gradle.svg') },
{ name: 'Grails', logo: image_path('/assets/illustrations/logos/grails.svg') }, { name: 'Grails', logo: image_path('illustrations/logos/grails.svg') },
{ name: 'dotNET', logo: image_path('/assets/illustrations/logos/dotnet.svg') }, { name: 'dotNET', logo: image_path('illustrations/logos/dotnet.svg') },
{ name: 'Rails', logo: image_path('/assets/illustrations/logos/rails.svg') }, { name: 'Rails', logo: image_path('illustrations/logos/rails.svg') },
{ name: 'Julia', logo: image_path('/assets/illustrations/logos/julia.svg') }, { name: 'Julia', logo: image_path('illustrations/logos/julia.svg') },
{ name: 'Laravel', logo: image_path('/assets/illustrations/logos/laravel.svg') }, { name: 'Laravel', logo: image_path('illustrations/logos/laravel.svg') },
{ name: 'Latex', logo: image_path('/assets/illustrations/logos/latex.svg') }, { name: 'Latex', logo: image_path('illustrations/logos/latex.svg') },
{ name: 'Maven', logo: image_path('/assets/illustrations/logos/maven.svg') }, { name: 'Maven', logo: image_path('illustrations/logos/maven.svg') },
{ name: 'Mono', logo: image_path('/assets/illustrations/logos/mono.svg') }, { name: 'Mono', logo: image_path('illustrations/logos/mono.svg') },
{ name: 'Nodejs', logo: image_path('/assets/illustrations/logos/node_js.svg') }, { name: 'Nodejs', logo: image_path('illustrations/logos/node_js.svg') },
{ name: 'npm', logo: image_path('/assets/illustrations/logos/npm.svg') }, { name: 'npm', logo: image_path('illustrations/logos/npm.svg') },
{ name: 'OpenShift', logo: image_path('/assets/illustrations/logos/openshift.svg') }, { name: 'OpenShift', logo: image_path('illustrations/logos/openshift.svg') },
{ name: 'Packer', logo: image_path('/assets/illustrations/logos/packer.svg') }, { name: 'Packer', logo: image_path('illustrations/logos/packer.svg') },
{ name: 'PHP', logo: image_path('/assets/illustrations/logos/php.svg') }, { name: 'PHP', logo: image_path('illustrations/logos/php.svg') },
{ name: 'Python', logo: image_path('/assets/illustrations/logos/python.svg') }, { name: 'Python', logo: image_path('illustrations/logos/python.svg') },
{ name: 'Ruby', logo: image_path('/assets/illustrations/logos/ruby.svg') }, { name: 'Ruby', logo: image_path('illustrations/logos/ruby.svg') },
{ name: 'Rust', logo: image_path('/assets/illustrations/logos/rust.svg') }, { name: 'Rust', logo: image_path('illustrations/logos/rust.svg') },
{ name: 'Scala', logo: image_path('/assets/illustrations/logos/scala.svg') }, { name: 'Scala', logo: image_path('illustrations/logos/scala.svg') },
{ name: 'Swift', logo: image_path('/assets/illustrations/logos/swift.svg') }, { name: 'Swift', logo: image_path('illustrations/logos/swift.svg') },
{ name: 'Terraform', logo: image_path('/assets/illustrations/logos/terraform.svg') } { name: 'Terraform', logo: image_path('illustrations/logos/terraform.svg') }
] ]
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment