Skip to content

Add git submodule init to setup.sh #4

Add git submodule init to setup.sh

Add git submodule init to setup.sh #4

Workflow file for this run

name: Deploy Workflow
on:
push:
branches:
- dev
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # Specify the Python version here
- name: Set up Roboto Config
run: |
mkdir -p ~/.roboto
echo '${{ secrets.ROBOTO_CONFIG }}' > ~/.roboto/config.json
- name: Run setup script
run: ./actions/px4_flight_review/scripts/setup.sh
- name: Run build script
run: ./actions/px4_flight_review/scripts/build.sh
- name: Run deploy script
run: ./actions/px4_flight_review/scripts/deploy.sh