-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mcbed
committed
Mar 28, 2023
1 parent
298f057
commit dc403f1
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,21 +32,21 @@ jobs: | |
pip install exhale | ||
- name: Build doxygen | ||
run: | | ||
cd ./documentation/doxygen/ | ||
cd ./ethercat_driver_ros2/doxygen/ | ||
doxygen | ||
cd ../.. | ||
- name: Build documentation | ||
run: | | ||
cd ./documentation/sphinx/ | ||
cd ./ethercat_driver_ros2/sphinx/ | ||
make html | ||
cd ../.. | ||
- name: Create commit | ||
run: | | ||
git clone https://github.com/ICube-Robotics/ethercat_driver_ros2.git --branch gh-pages --single-branch gh-pages | ||
mkdir -p gh-pages/docs/ | ||
mkdir -p gh-pages/api/ | ||
cp -r ./documentation/sphinx/_build/html/* gh-pages/ | ||
cp -r ./documentation/doxygen/_build/html/* gh-pages/api/ | ||
cp -r ./ethercat_driver_ros2/sphinx/_build/html/* gh-pages/ | ||
cp -r ./ethercat_driver_ros2/doxygen/_build/html/* gh-pages/api/ | ||
cd gh-pages | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
|