An action to run bloom-generate command and generate deb files for ROS packages on ROS noetic / Ubuntu-20.04.
- targets: Space separated list of directories of package.xml. Path should be relative to source_dir.
- source_dir: Path of the top directory of sources.
- output_dir: Path of the directory to which the deb files will be copied. Realtive to GITHUB_WORKSPACE.
- setup_dependencies_script_path: Path of the script to be executed before bloom-generate. rosdep install will be executed in the default script.
- deb_files: Path of the deb files.
- rosdep_file: Path of the rosdep file.
- output_dir: Path of the output directory.
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: smilerobotics/rplidar_ros
ref: reconfigure
path: ./src/rplidar_ros
- uses: smilerobotics/actions-ros-bloom-generate-noetic@v1
with:
source_dir: ./src
targets: ./rplidar_ros
output_dir: ./debs
id: generate