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 0db41f8 commit 188f596Copy full SHA for 188f596
.github/workflows/buildarm.yml
@@ -85,6 +85,11 @@ jobs:
85
- name: Checkout
86
uses: actions/checkout@v4
87
88
+ - name: Install Chromium
89
+ run: |
90
+ sudo apt-get update
91
+ sudo apt-get install -y chromium-browser
92
+
93
- name: Install Node.js
94
uses: actions/setup-node@v4
95
with:
@@ -111,10 +116,15 @@ jobs:
111
116
repo-token: ${{ secrets.GITHUB_TOKEN }}
112
117
version: 3.x
113
118
119
+ - name: Set Chromium executable path for Puppeteer
120
121
+ export PUPPETEER_EXECUTABLE_PATH=$(which chromium-browser)
122
114
123
- name: Package
115
124
env:
125
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
126
run: |
127
+ export PUPPETEER_SKIP_DOWNLOAD=true
128
yarn install
129
yarn --cwd arduino-ide-extension build
130
yarn --cwd electron-app rebuild
0 commit comments