From 144955d580ee2c7ccdd33b052b92de7b9398c19a Mon Sep 17 00:00:00 2001 From: Christian Henkel <6976069+ct2034@users.noreply.github.com> Date: Fri, 10 Jan 2025 13:08:19 +0100 Subject: [PATCH] Fix deploy workflow (#76) * Switching to jazzy Signed-off-by: Christian Henkel * Switching to jazzy Signed-off-by: Christian Henkel --------- Signed-off-by: Christian Henkel --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fd6d8f50..98b3b34d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -8,7 +8,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-latest # 24.04 steps: # Checkout the repository - name: Checkout repository @@ -24,16 +24,16 @@ jobs: - name: Set up ROS uses: ros-tooling/setup-ros@v0.7 with: - required-ros-distributions: humble + required-ros-distributions: jazzy # Install packages - name: Install our packages run: | - source /opt/ros/humble/setup.bash + source /opt/ros/jazzy/setup.bash pip install . # build the documentation - name: Build documentation run: | - source /opt/ros/humble/setup.bash + source /opt/ros/jazzy/setup.bash cd docs make html # upload the documentation to GitHub Pages