Skip to content

Bump semver from 5.7.1 to 5.7.2 (#52) #73

Bump semver from 5.7.1 to 5.7.2 (#52)

Bump semver from 5.7.1 to 5.7.2 (#52) #73

Workflow file for this run

name: Build/release
on: [push, pull_request]
jobs:
build-release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn test
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
github_token: ${{ secrets.github_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') }}