Created
September 15, 2021 23:15
-
-
Save vkiranmaniya/996423175980b26cf9ec0dc3a2321217 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: 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