Data Tome 1.7.0 - Arduino AVR Boards are Back! #17
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: PlatformIO Publish Release | |
on: | |
release: | |
types: [released] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
env: | |
PLATFORMIO_AUTH_TOKEN: ${{ secrets.PLATFORMIO_AUTH_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install PlatformIO Core | |
run: | | |
python -m pip install --upgrade pip | |
pip install platformio | |
- name: Publish Release | |
run: | | |
pio package publish --no-interactive --type library |