Skip to content

Update platformio_ci.yml #41

Update platformio_ci.yml

Update platformio_ci.yml #41

Workflow file for this run

name: PlatformIOCI
on:
push:
branches:
- action # Replace 'main' with your branch if different
workflow_dispatch: # This keeps the option to trigger manually
inputs:
PLATFORMIO_PROJECT_DIR:
description: 'Specify the PlatformIO project directory'
required: true
default: 'mcu_main_sustainer'
jobs:
build:
permissions:
contents: read
actions: read
checks: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Run PlatformIO
run: |
cd MIDAS
pio platform install teensy
pio run -e ${{ github.event.inputs.PLATFORMIO_PROJECT_DIR }} || true
- name: Artifacts
uses: actions/upload-artifact@v4
with:
name: firmware-files
path: .