Skip to content

Commit 46b9c7b

Browse files
authored
Merge pull request #235 from balloob/store-build-artifacts
Store build artifacts
2 parents ffda7c7 + 521a33e commit 46b9c7b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,20 @@ jobs:
66
steps:
77
- name: Checkout
88
uses: actions/checkout@v2
9-
9+
1010
- name: Build with Arduino-CLI
1111
run: bash ci/build-arduino.sh
12-
12+
1313
pio-build:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2
18-
18+
1919
- name: Build with PlatformIO
2020
run: bash ci/build-platformio.sh
21+
22+
- uses: actions/upload-artifact@v2
23+
with:
24+
name: firmware
25+
path: .pio/build/*/firmware.bin

0 commit comments

Comments
 (0)