Skip to content

Commit

Permalink
feat: add linux build
Browse files Browse the repository at this point in the history
closes #66
  • Loading branch information
shayded-exe committed Jan 6, 2022
1 parent 8da5e1a commit c9f67f8
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,21 @@ jobs:
build:
strategy:
matrix:
os: [windows-latest, macos-latest]
os:
- windows-latest
- macos-latest
- ubuntu-latest
node-version: [14.x]

runs-on: ${{ matrix.os }}

steps:
- name: Delete current release assets
uses: Kellojo/[email protected]
with:
delete-only-drafts: true
github-access-token: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -41,12 +50,6 @@ jobs:
mkdir -p ~/private_keys/
echo '${{ secrets.APPLE_API_KEY }}' > ~/private_keys/AuthKey_${{ secrets.APPLE_API_KEY_ID }}.p8
- name: Delete current release assets
uses: Kellojo/[email protected]
with:
delete-only-drafts: true
github-access-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build/release Electron app
run: npx vue-cli-service electron:build
env:
Expand Down

0 comments on commit c9f67f8

Please sign in to comment.