Skip to content

Merge pull request #89 from Durtur/dependabot/npm_and_yarn/electron-1… #276

Merge pull request #89 from Durtur/dependabot/npm_and_yarn/electron-1…

Merge pull request #89 from Durtur/dependabot/npm_and_yarn/electron-1… #276

Workflow file for this run

name: Build/release
on:
push:
branches: master
workflow_dispatch:
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]
env:
USE_HARD_LINKS: false
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 16
- name: Build/release Electron app
uses: samuelmeuli/[email protected]
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.gh_token }}
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}