Skip to content

Commit

Permalink
updates github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bytecod3 committed Aug 6, 2024
1 parent a9a14d5 commit cd863c9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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/[email protected]
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
publish_dir: ./docs/html/
publish_branch: gh-pages
2 changes: 1 addition & 1 deletion n4-flight-software/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cd863c9

Please sign in to comment.