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 9f627f6 commit 2b2df14Copy full SHA for 2b2df14
.github/workflows/compile-examples.yml
@@ -7,6 +7,7 @@ on:
7
- ".github/workflows/compile-examples.yml"
8
- "cores/**"
9
- "libraries/**"
10
+ - "patches/**"
11
- "variants/**"
12
- "boards.txt"
13
- "platform.txt"
@@ -15,6 +16,7 @@ on:
15
16
17
18
19
20
21
22
@@ -87,3 +89,15 @@ jobs:
87
89
with:
88
90
path: ${{ env.SKETCHES_REPORTS_PATH }}
91
name: ${{ env.SKETCHES_REPORTS_PATH }}
92
+
93
+ - name: Pack
94
+ run: |
95
+ cd ${{ github.workspace }}/ArduinoCore-mbed/
96
+ tar -zcvf ArduinoCore-mbed.tar.gz
97
+ echo "PACKAGE=${{ github.workspace }}/ArduinoCore-mbed.tar.gz" >> $GITHUB_ENV
98
99
+ - name: Upload package
100
+ uses: actions/upload-artifact@master
101
+ with:
102
+ name: Seeed nRF52 boards
103
+ path: ${{env.PACKAGE}}
0 commit comments