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 129c78f commit 1650cf3Copy full SHA for 1650cf3
.github/workflows/build.yml
@@ -58,3 +58,16 @@ jobs:
58
- name: Build for Teensy 4.1
59
run: |
60
pio run -e teensy41
61
+
62
+ - name: Prepare firmware folder
63
+ run: |
64
+ mkdir build
65
+ cp .pio/build/teensy31/firmware.hex build/teensy31_firmware.hex
66
+ cp .pio/build/teensy36/firmware.hex build/teensy36_firmware.hex
67
+ cp .pio/build/teensy41/firmware.hex build/teensy41_firmware.hex
68
69
+ - name: Upload Teensy Firmware
70
+ uses: actions/upload-artifact@v3
71
+ with:
72
+ name: teensy_firmware
73
+ path: build
0 commit comments