Created
September 17, 2019 12:02
-
-
Save azu/673426500458f63f019c8f5e013f282a to your computer and use it in GitHub Desktop.
Electron Release workflow for GitHub Actions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Electron CD | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macOS-10.14, windows-2016, ubuntu-18.04] | |
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: | | |
yarn run dist | |
- name: Cleanup artifacts | |
run: | | |
npx rimraf "dist/!(*.exe|*.deb|*.AppImage|*.dmg)" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: ${{ matrix.os }} | |
path: dist | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: "dist/**" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I ended up doing 2 different flows dependant on OS. I'll have a look at the latest one and see how that fairs.