Skip to content

Commit 49b13df

Browse files
committed
Create push-esp32.yml
1 parent c777739 commit 49b13df

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/push-esp32.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Arduino Core 2.0.14
2+
3+
on:
4+
workflow_dispatch: # Manually start a workflow
5+
6+
jobs:
7+
build-libs:
8+
name: Build Arduino Libs
9+
runs-on: ubuntu-22.04
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Install dependencies
13+
run: bash ./tools/prepare-ci.sh
14+
- name: Build Arduino Libs
15+
run: bash ./build.sh -t esp32
16+
- name: Release
17+
uses: jason2866/[email protected]
18+
with:
19+
tag_name: ${{ github.run_number }}
20+
body_path: release-info.txt
21+
prerelease: true
22+
files: |
23+
dist/framework*
24+
release-info.txt
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)