Skip to content

Commit

Permalink
adding building for platform on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
con-cis committed Oct 11, 2023
1 parent 8598ece commit 9c98654
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ jobs:
run: npm run build --if-present
- name: Electronegativity
uses: doyensec/electronegativity-action@v2.0
- name: Build for Windows
if: startsWith(matrix.os, 'windows')
run: npm run build:win
- name: Build for macOS
if: startsWith(matrix.os, 'macos')
run: npm run build:mac
- name: Build for Linux
if: startsWith(matrix.os, 'ubuntu')
run: npm run build:linux
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 9c98654

Please sign in to comment.