File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,26 @@ jobs:
35
35
with :
36
36
node-version : 20
37
37
38
+ - name : Download Firmware Data
39
+
40
+ with :
41
+ repository : " webosbrew/dev-toolbox-cli"
42
+ latest : true
43
+ fileName : " webosbrew-toolbox-fw-symbols_*.deb"
44
+ out-file-path : " temp"
45
+
46
+ - name : Update Packages
47
+ run : sudo apt-get -yq update
48
+
49
+ - name : Install webOS CLI
50
+ run : sudo apt-get install ./temp/*.deb
51
+
38
52
- name : Build
39
53
run : |
40
54
npm ci
41
55
npm run build
56
+ env :
57
+ WEBOSBREW_DEV_TOOLBOX_DATA : /usr/share/webosbrew/compat-checker/data
42
58
43
59
- name : Setup Pages
44
60
uses : actions/configure-pages@v5
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ export class Firmware {
104
104
* @return {Promise<Firmware[]> }
105
105
*/
106
106
static async load ( ) {
107
- const dataRoot = process . env . DEV_TOOLBOX_DATA ;
107
+ const dataRoot = process . env . WEBOSBREW_DEV_TOOLBOX_DATA ;
108
108
if ( ! dataRoot ) {
109
109
return [ ] ;
110
110
}
You can’t perform that action at this time.
0 commit comments