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 b56c03d commit b1305cdCopy full SHA for b1305cd
.github/workflows/githubci.yml
@@ -7,7 +7,7 @@ jobs:
7
strategy:
8
fail-fast: false
9
matrix:
10
- arduino-platform: ["cpb"]
+ arduino-platform: ["cpc", "ledglasses_nrf52840"]
11
runs-on: ubuntu-18.04
12
13
steps:
@@ -46,3 +46,20 @@ jobs:
46
build/*.hex
47
build/*.bin
48
build/*.uf2
49
+
50
+ - name: where am I
51
+ run: find -name \*.uf2 -or -name \*.bin
52
53
+ - name: Zip release files
54
+ if: startsWith(github.ref, 'refs/tags/')
55
+ run: |
56
+ if [ -d build ]; then
57
+ cd build && zip -9 -o ${{ matrix.arduino-platform }}.zip *.hex *.bin *.uf2
58
+ fi
59
60
+ - name: Create release
61
62
+ uses: softprops/action-gh-release@v1
63
+ with:
64
+ files: build/${{ matrix.arduino-platform }}.zip
65
+ fail_on_unmatched_files: false
0 commit comments