-
Notifications
You must be signed in to change notification settings - Fork 81
Closed
Labels
Description
The following line is goofed and causes all windows builds to fail as ${{ needs.identify-ros-distro.outputs.distro }} is undefined on windows:
| call "c:\dev\${{ needs.identify-ros-distro.outputs.distro }}\ros2-windows\setup.bat" |
The corrected line should read:
call "c:\dev\${{ matrix.ros_distribution }}\ros2-windows\setup.bat"