IDF v5.3 #2536
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: Arduino Core 2.0.x | |
on: | |
workflow_dispatch: # Manually start a workflow | |
jobs: | |
build-libs: | |
name: Build Arduino Libs | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: bash ./tools/prepare-ci.sh | |
- name: Get current branch | |
run: | | |
echo "GIT_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_ENV | |
- 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 }} |