From cd863c9deddfc81d780b2cb2d2975e291f341700 Mon Sep 17 00:00:00 2001 From: bytecod3 Date: Tue, 6 Aug 2024 13:53:47 +0300 Subject: [PATCH] updates github actions --- .github/workflows/doxygen-gh-pages.yml | 13 ++++++++----- n4-flight-software/src/main.cpp | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/doxygen-gh-pages.yml b/.github/workflows/doxygen-gh-pages.yml index e86dea1..51f363f 100644 --- a/.github/workflows/doxygen-gh-pages.yml +++ b/.github/workflows/doxygen-gh-pages.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: Doxygen Action +name: Doxygen-Documentation # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the master branch @@ -19,19 +19,22 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - + + # build the doxygen documentation - name: Doxygen Action uses: mattnotmitt/doxygen-action@v1.1.0 with: # Path to Doxyfile - doxyfile-path: "./Doxyfile" # default is ./Doxyfile + doxyfile-path: ./Doxyfile # default is ./Doxyfile # Working directory - working-directory: "." # default is . + working-directory: . # default is . + # Deploy the HTML documentation to GitHub Pages - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} # Default Doxyfile build documentation to html directory. # Change the directory if changes in Doxyfile - publish_dir: ./docs/html \ No newline at end of file + publish_dir: ./docs/html/ + publish_branch: gh-pages \ No newline at end of file diff --git a/n4-flight-software/src/main.cpp b/n4-flight-software/src/main.cpp index 9f4940b..f5a857a 100644 --- a/n4-flight-software/src/main.cpp +++ b/n4-flight-software/src/main.cpp @@ -1352,7 +1352,7 @@ void setup(){ } else { debugln("[-}Failed to create checkFlightState task"); } - // + //// /* TASK 6: FLIGHT STATE CALLBACK TASK */ th = xTaskCreatePinnedToCore(flightStateCallback,"flightStateCallback",STACK_SIZE*2,NULL,1, NULL,app_id);