Skip to content

Commit

Permalink
Add submodule checkout to deploy.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
YvesSchoenberg committed Dec 20, 2023
1 parent 2c8ae47 commit ce88c42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: 'recursive' # Recursively clone submodules

- name: Set up Python
uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion actions/px4_flight_review/scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ venv_dir="$PACKAGE_ROOT/.venv"
python -m venv --upgrade-deps $venv_dir

# Initialize flight review submodule
git submodule update --init --recursive $PACKAGE_ROOT/src/px4_flight_review/flight_review/
#git submodule update --init --recursive $PACKAGE_ROOT/src/px4_flight_review/flight_review/

# Install roboto
pip_exe="$venv_dir/bin/pip"
Expand Down

0 comments on commit ce88c42

Please sign in to comment.