Skip to content

Commit 577fa48

Browse files
committed
Update build workflow and documentation examples
1 parent 8562f7d commit 577fa48

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/build_page.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
4141
- name: Create commit
4242
run: |
43-
git clone https://github.com/ipa-vsp/industrial_standards.git --branch gh-pages --single-branch gh-pages
43+
# Clone this repository's gh-pages branch so commits fast-forward correctly
44+
git clone https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git --branch gh-pages --single-branch gh-pages
4445
mkdir -p gh-pages/
4546
cp -r ./workshop/build/html/* gh-pages/
4647
cd gh-pages
@@ -54,4 +55,4 @@ jobs:
5455
with:
5556
branch: gh-pages
5657
directory: gh-pages
57-
github_token: ${{ secrets.GITHUB_TOKEN }}
58+
github_token: ${{ secrets.GITHUB_TOKEN }}

workshop/source/_source/control/05_Example.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,3 +306,6 @@ ros2 action send_goal /gripper_controller/gripper_cmd control_msgs/action/Parall
306306
```
307307

308308
![WBot Gripper](mobile_manipulator/wbot_gripper.gif)
309+
310+
### References
311+
- [ROSCon 2025 Control Workshop](https://github.com/ros-controls/roscon2025_control_workshop)

workshop/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ Session 6 - ROS2 Control
5353
Exercise 6.2 - ROS2-Control-Example-2 <_source/control/02_Example.md>
5454
Exercise 6.3 - ROS2-Control-Example-3 <_source/control/03_Example.md>
5555
Exercise 6.4 - ROS2-Control-Example-4 <_source/control/04_Example.md>
56+
Exercise 6.5 - ROS2-Control-Example-5 <_source/control/05_Example.md>
5657

0 commit comments

Comments
 (0)