Skip to content

IDF v5.4 debug

IDF v5.4 debug #1701

Workflow file for this run

name: Arduino IDF 5.1 ITEAD
on:
workflow_dispatch: # Manually start a workflow
jobs:
build-libs:
name: Build Arduino Libs
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: bash ./tools/prepare-ci.sh
- name: Build Arduino Libs
run: bash ./build.sh
- name: Release
uses: jason2866/[email protected]
with:
tag_name: ${{ github.run_number }}
body_path: release-info.txt
prerelease: true
files: |
dist/framework*
release-info.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}