2020-03-14 15:58:58 +00:00
|
|
|
name: Electron app
|
2020-03-14 15:51:23 +00:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-03-14 15:58:58 +00:00
|
|
|
os: [ubuntu-18.04]
|
|
|
|
# os: [macOS-10.14, windows-2016, ubuntu-18.04]
|
2020-03-14 15:51:23 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Context
|
|
|
|
env:
|
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
|
|
run: echo "$GITHUB_CONTEXT"
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
- name: Use Node.js 10.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 10.x
|
|
|
|
- name: yarn install
|
|
|
|
run: |
|
|
|
|
yarn install
|
|
|
|
- name: Publish
|
|
|
|
run: |
|
2020-03-14 17:04:07 +00:00
|
|
|
yarn run build:app
|
2020-03-14 15:51:23 +00:00
|
|
|
- name: Cleanup artifacts
|
|
|
|
run: |
|
|
|
|
npx rimraf "app/dist/!(*.exe|*.deb|*.AppImage|*.dmg)"
|
|
|
|
- name: Upload artifacts
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.os }}
|
|
|
|
path: app/dist
|
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
with:
|
|
|
|
files: "app/dist/**"
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|