Skip to content
This repository was archived by the owner on Jun 23, 2021. It is now read-only.

Commit 125f899

Browse files
committed
Merge branch 'master' of https://github.com/Sential/multrin
2 parents 49fe97f + 05eb757 commit 125f899

File tree

2 files changed

+30
-35
lines changed

2 files changed

+30
-35
lines changed

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build
2+
3+
on: push
4+
5+
jobs:
6+
release:
7+
runs-on: ${{ matrix.os }}
8+
9+
strategy:
10+
matrix:
11+
os: [macos-latest, windows-latest]
12+
13+
steps:
14+
- name: Check out Git repository
15+
uses: actions/checkout@v1
16+
17+
- name: Install Node.js
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: 12
21+
22+
- name: Build the app
23+
uses: samuelmeuli/action-electron-builder@v1
24+
with:
25+
github_token: ${{ secrets.token }}
26+
27+
mac_certs: ${{ secrets.mac_certs }}
28+
mac_certs_password: ${{ secrets.mac_certs_password }}
29+
30+
release: ${{ startsWith(github.ref, 'refs/tags/v') }}

.travis.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)