2021-05-16 21:03:04 +02:00
|
|
|
name: Build/release [linux]
|
2021-03-26 18:03:44 +01:00
|
|
|
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-05-16 21:03:04 +02:00
|
|
|
os: [ubuntu-latest]
|
2021-03-26 18:03:44 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Install Node.js, NPM and Yarn
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2021-06-14 09:11:23 +02:00
|
|
|
node-version: 14
|
2021-03-26 18:03:44 +01:00
|
|
|
|
|
|
|
- name: Build/release Electron app
|
|
|
|
uses: samuelmeuli/action-electron-builder@v1
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.github_token }}
|
2021-04-28 12:11:39 +02:00
|
|
|
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
|