1
1
mirror of https://github.com/Fabio286/antares.git synced 2024-12-26 16:54:06 +01:00

ci: moving to GitHub actions

This commit is contained in:
Fabio Di Stasio 2021-03-26 18:03:44 +01:00
parent 2ca2988832
commit 82c25711b6

26
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Build/release
on: push
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, 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: 10
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
github_token: ${{ secrets.github_token }}
release: ${{ startsWith(github.ref, 'refs/tags/v') }}