Skip to content

Instantly share code, notes, and snippets.

@vkiranmaniya
Created September 15, 2021 23:15
Show Gist options
  • Save vkiranmaniya/996423175980b26cf9ec0dc3a2321217 to your computer and use it in GitHub Desktop.
Save vkiranmaniya/996423175980b26cf9ec0dc3a2321217 to your computer and use it in GitHub Desktop.
name: ElectronCI Workflow
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-10.14, windows-2016, ubuntu-18.04]
steps:
- name: Context
env:
CTX: ${{ toJson(github) }}
run: echo "$CTX"
- 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