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

Commit

Permalink
Add first draft of auto build action
Browse files Browse the repository at this point in the history
  • Loading branch information
thislooksfun committed Dec 4, 2019
1 parent 39be11a commit eb6c6a8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release Builder

on:
release:
types: [published, created, edited, prereleased]

jobs:
build-win:
name: Build (Windows)
runs-on: windows-latest
steps:
- run: npm run electron:build -- -w # -p always

build-mac:
name: Build (macOS)
runs-on: macos-latest
steps:
- run: npm run electron:build -- -m # -p always

build-linux:
name: Build (Linux)
runs-on: ubuntu-latest
steps:
- run: npm run electron:build -- -l # -p always

0 comments on commit eb6c6a8

Please sign in to comment.