We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c586a09 commit 5d88fb8Copy full SHA for 5d88fb8
1 file changed
.github/workflows/githubci.yml
@@ -47,6 +47,20 @@ jobs:
47
build/*.bin
48
build/*.uf2
49
50
+ - name: Zip release files
51
+ if: startsWith(github.ref, 'refs/tags/')
52
+ run: |
53
+ if [ -d build ]; then
54
+ cd build && zip -9 -o ${{ matrix.arduino-platform }}.zip *.hex *.bin *.uf2
55
+ fi
56
+
57
+ - name: Create release
58
59
+ uses: softprops/action-gh-release@v1
60
+ with:
61
+ files: build/${{ matrix.arduino-platform }}.zip
62
+ fail_on_unmatched_files: false
63
64
pylint:
65
runs-on: ubuntu-latest
66
steps:
0 commit comments