In this section we are going to:
my_robot_bringup package:Use this command to create new package:
cd ros2_ws/src/
ros2 pkg create my_robot_bringup

To install the launch folder we must modify the CMakeLists.txt file:

my_robot_gazebo.launch.xml
To add the file just right click on the launch folder and then choose add file
The following is the code:
<launch>
<let name="urdf_path"
value="$(find-pkg-share my_robot_description)/urdf/my_robot.urdf.xacro" />
<node pkg="robot_state_publisher" exec="robot_state_publisher">
<param name="robot_description"
value="$(command 'xacro $(var urdf_path)')" />
</node>
</launch>