We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91612ca commit 1ed3babCopy full SHA for 1ed3bab
1 file changed
.github/workflows/publish-raspberrypi.yml
@@ -33,14 +33,19 @@ jobs:
33
with:
34
python-version: '3.10'
35
36
+ - name: Set up QEMU
37
+ uses: docker/setup-qemu-action@v3
38
+ with:
39
+ platforms: arm64,arm
40
+
41
+ - name: Install dependencies
42
+ run: |
43
+ sudo apt-get update
44
+ sudo apt-get install -y --no-install-recommends libudev-dev
45
46
- name: Install and build
47
run: |
48
npm install
- npm run postinstall
- # Build serialport for armv7l
- cd release/app/node_modules/@serialport/bindings-cpp
- npx node-gyp configure build
- cd -
49
npm run build
50
51
- name: Publish releases
0 commit comments