Skip to content

Commit

Permalink
feat: add linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
shuse2 committed May 19, 2024
1 parent c0f52cc commit cb7f3ad
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/electron-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
os: [macos-latest, desktop-build]
os: [macos-latest, desktop-build, ubuntu-latest]

steps:
- name: Check out Git repository
Expand Down Expand Up @@ -65,6 +65,14 @@ jobs:
build_script_name: pack:win
github_token: ${{ secrets.github_token }}

- name: Build and pack linux app
if: startsWith(matrix.os, 'ubuntu-latest')
# codesigning
uses: samuelmeuli/action-electron-builder@v1
with:
build_script_name: pack
github_token: ${{ secrets.github_token }}

- name: Build and pack mac app
if: startsWith(matrix.os, 'macos')
uses: samuelmeuli/action-electron-builder@v1
Expand Down

0 comments on commit cb7f3ad

Please sign in to comment.