Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thislooksfun committed Dec 5, 2019
1 parent 36e9871 commit 2f4fdd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:

# Build
- name: Build for Windows
if: matrix.os == windows-latest
if: matrix.os == 'windows-latest'
run: npm run electron:build -- -w # -p always

- name: Build for macOS
if: matrix.os == macos-latest
if: matrix.os == 'macos-latest'
run: npm run electron:build -- -m # -p always

- name: Build for Linux
if: matrix.os == linux-latest
if: matrix.os == 'linux-latest'
run: npm run electron:build -- -l # -p always

0 comments on commit 2f4fdd9

Please sign in to comment.