Skip to content

Commit 2b2df14

Browse files
committed
test action produce Core.zip
1 parent 9f627f6 commit 2b2df14

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/compile-examples.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- ".github/workflows/compile-examples.yml"
88
- "cores/**"
99
- "libraries/**"
10+
- "patches/**"
1011
- "variants/**"
1112
- "boards.txt"
1213
- "platform.txt"
@@ -15,6 +16,7 @@ on:
1516
- ".github/workflows/compile-examples.yml"
1617
- "cores/**"
1718
- "libraries/**"
19+
- "patches/**"
1820
- "variants/**"
1921
- "boards.txt"
2022
- "platform.txt"
@@ -87,3 +89,15 @@ jobs:
8789
with:
8890
path: ${{ env.SKETCHES_REPORTS_PATH }}
8991
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

Comments
 (0)