Skip to content

Commit

Permalink
[FIX] Fix permission in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
avjui committed Jun 15, 2024
1 parent 540c5fc commit e4f9aec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with hx711. If not, see <https://www.gnu.org/licenses/>.

name: PlatformIO CI
name: PlatformIO CI Build

on: [push]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with hx711. If not, see <https://www.gnu.org/licenses/>.

name: PlatformIO CI
name: CPP Check

on: [push]

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e4f9aec

Please sign in to comment.