Skip to content

Commit

Permalink
feature: use Github Action instead of Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcticLampyrid committed May 9, 2020
1 parent bed6ae8 commit faef193
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build/release

on: push

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

strategy:
matrix:
os: [ubuntu-latest, windows-latest]

steps:
- name: Check out Git repository
uses: actions/checkout@v1

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 12

- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
github_token: ${{ secrets.GH_TOKEN }}
release: ${{ startsWith(github.ref, 'refs/tags/v') }}

27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

0 comments on commit faef193

Please sign in to comment.