2020-04-26 20:33:39 +00:00
|
|
|
name: Release Core
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- core@*
|
|
|
|
|
2020-05-28 17:09:51 +00:00
|
|
|
env:
|
|
|
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
|
|
GITHUB_REF: ${{ github.ref }}
|
|
|
|
GITHUB_SHA: ${{ github.sha }}
|
|
|
|
NPM_CONFIG_TARGET: 3.1.13
|
|
|
|
NPM_CONFIG_DISTURL: https://electronjs.org/headers
|
|
|
|
NPM_CONFIG_RUNTIME: electron
|
|
|
|
|
2020-04-26 20:33:39 +00:00
|
|
|
jobs:
|
|
|
|
Windows:
|
|
|
|
name: Windows
|
|
|
|
runs-on: windows-2016
|
|
|
|
steps:
|
2020-05-28 17:09:51 +00:00
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-node@v1
|
2020-04-26 20:33:39 +00:00
|
|
|
with:
|
|
|
|
node-version: 10
|
2020-05-28 17:09:51 +00:00
|
|
|
- run: npm run bootstrap
|
|
|
|
- run: npm test
|
|
|
|
- run: npm run app-release
|
2020-04-26 20:33:39 +00:00
|
|
|
env:
|
2020-05-28 17:09:51 +00:00
|
|
|
CSC_LINK: ${{ secrets.CORE_WINDOWS_CSC_LINK }}
|
|
|
|
CSC_KEY_PASSWORD: ${{ secrets.CORE_WINDOWS_CSC_KEY_PASSWORD }}
|
|
|
|
Mac:
|
|
|
|
name: Mac
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 10
|
|
|
|
- run: npm run bootstrap
|
|
|
|
- run: npm test
|
|
|
|
- run: npm run app-release
|
|
|
|
env:
|
|
|
|
APPLE_ID: ${{ secrets.CORE_APPLE_ID }}
|
|
|
|
APPLE_ID_PASSWORD: ${{ secrets.CORE_APPLE_ID_PASSWORD }}
|
|
|
|
CSC_LINK: ${{ secrets.CORE_MAC_CSC_LINK }}
|
|
|
|
CSC_KEY_PASSWORD: ${{ secrets.CORE_MAC_CSC_KEY_PASSWORD }}
|
2020-04-26 20:33:39 +00:00
|
|
|
Linux:
|
|
|
|
name: Linux
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-05-28 17:09:51 +00:00
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 10
|
|
|
|
- run: npm run bootstrap
|
|
|
|
- run: npm test
|
|
|
|
- run: npm run app-release
|
2020-04-26 20:33:39 +00:00
|
|
|
env:
|
2020-05-28 17:09:51 +00:00
|
|
|
BUILD_TARGETS: AppImage,deb,tar.gz,rpm
|
|
|
|
# TODO: Figure out Snap deploys
|
|
|
|
# BUILD_TARGETS: AppImage,Snap,deb,tar.gz,rpm
|
|
|
|
# SNAPCRAFT_LOGIN_FILE: ${{ secrets.SNAPCRAFT_LOGIN_FILE }}
|