Sync to ETL 20.44.1 #5
Workflow file for this run
This file contains hidden or 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: Publish ETL (Arduino) to PlatformIO | |
on: | |
release: | |
types: [published] # Trigger only when a GitHub release is published | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Install PlatformIO | |
run: pip install platformio | |
- name: Publish to PlatformIO Registry | |
run: pio package publish --owner etlcpp --non-interactive | |
env: | |
PLATFORMIO_AUTH_TOKEN: ${{ secrets.PLATFORMIO_TOKEN }} |