Skip to content

Commit

Permalink
# CWPBD-153 * update workflow config
Browse files Browse the repository at this point in the history
  • Loading branch information
yanjiaxuan committed May 26, 2021
1 parent efe9813 commit 292c685
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# main.yml

# Workflow's name
name: Build Electron App For Win/Mac
name: Build Electron App For Win/Mac/Linux

# Workflow's trigger
on:
Expand Down Expand Up @@ -44,15 +44,15 @@ jobs:
- name: build windows app
if: matrix.os == 'windows-2019'
run: |
npm run build
npm run build && npm run pack:win
- name: build mac app
if: matrix.os == 'macos-10.15'
run: |
npm run build
npm run build && npm run pack:mac
- name: build Ubuntu app
if: matrix.os == 'ubuntu-18.04'
run: |
npm run build
npm run build && npm run pack:linux
# step5: cleanup artifacts in dist_electron
- name: cleanup artifacts for windows
if: matrix.os == 'windows-2019'
Expand Down

0 comments on commit 292c685

Please sign in to comment.