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 288c79aCopy full SHA for 288c79a
.github/workflows/githubci.yml
@@ -7,7 +7,7 @@ jobs:
7
strategy:
8
fail-fast: false
9
matrix:
10
- arduino-platform: ["cpb"]
+ arduino-platform: ["ledglasses_nrf52840"]
11
runs-on: ubuntu-18.04
12
13
steps:
@@ -46,3 +46,16 @@ 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: cd build && zip -9 -o ${{ matrix.arduino-platform }}.zip *.hex *.bin *.uf2
56
57
+ - name: Create release
58
59
+ uses: softprops/action-gh-release@v1
60
+ with:
61
+ files: build/${{ matrix.arduino-platform }}.zip
0 commit comments