We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c777739 commit 49b13dfCopy full SHA for 49b13df
.github/workflows/push-esp32.yml
@@ -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