-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Fix permission in github action
- Loading branch information
Showing
3 changed files
with
7 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
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
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 |
---|---|---|
|
@@ -33,14 +33,17 @@ jobs: | |
|
||
steps: | ||
- name: Requirements | ||
run: apt-get install -y build-essential make gcc g++ cmake doxygen git tree python3 python3-sphinx-rtd-theme python3-breathe python3-sphinx-sitemap | ||
run: sudo apt-get install -y build-essential make gcc g++ cmake doxygen git tree python3 python3-pip | ||
&& pip install -U sphinx-rtd-theme | ||
&& pip install -U breathe | ||
&& pip install -U sphinx-sitemap | ||
- name: Checkout repo | ||
uses: actions/[email protected] | ||
- name: Build docs | ||
run: cd doc | ||
&& cmake . | ||
&& make doc | ||
&& cd _sphinx/_build/html | ||
&& cd sphinx/html/_static | ||
&& touch .nojekyll | ||
- name: Deploy | ||
uses: JamesIves/github-pages-deploy-action@releases/v3 | ||
|