diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b005e2d..fbdbd13 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with hx711. If not, see . -name: PlatformIO CI +name: PlatformIO CI Build on: [push] diff --git a/.github/workflows/cppcheck.yml b/.github/workflows/cppcheck.yml index d0cb451..b80b52f 100644 --- a/.github/workflows/cppcheck.yml +++ b/.github/workflows/cppcheck.yml @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with hx711. If not, see . -name: PlatformIO CI +name: CPP Check on: [push] diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 8aba295..3f1b481 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -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/checkout@1.0.0 - 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