Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Lodder committed Jun 15, 2023
1 parent 39fa375 commit 0b1241b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,18 @@ jobs:
node-version: ${{ matrix.node }}

- run: npm i
- run: npm run rollup
- run: npm run postcss

- name: Installing maxOS related dependencies
- name: Build MacOS
if: startsWith(matrix.os, 'macos')
run: npm i dmg-license
run: npm run build:macos

- run: npm run rollup
- run: npm run postcss
- run: npm run build:all
- name: Build Windows
if: startsWith(matrix.os, 'windows')
run: npm run build:win

- name: Build Linux
if: startsWith(matrix.os, 'ubuntu')
run: npm run build:linux
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"build": "electron-builder",
"postcss": "postcss app/css/app.css -o dist/css/app.css",
"rollup": "rollup --config rollup.config.js",
"build:all": "electron-builder -lwm"
"build:macos": "electron-builder -m"
"build:win": "electron-builder -m"
"build:linux": "electron-builder -m"
},
"dependencies": {
"electron-store": "^8.1.0",
Expand Down

0 comments on commit 0b1241b

Please sign in to comment.