Move to python 3.10 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 deploy script | |
run: ./actions/px4_flight_review/scripts/deploy.sh |