Skip to content

#skip-ci v0.0.6 improved logging (again), "close installer" button no… #12

#skip-ci v0.0.6 improved logging (again), "close installer" button no…

#skip-ci v0.0.6 improved logging (again), "close installer" button no… #12

Workflow file for this run

name: Build/release
on: [push]
jobs:
build:
name: Building ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '#skip-ci')"
strategy:
matrix:
include:
- kind: linux
os: ubuntu-latest
platform: linux
- kind: windows
os: windows-latest
platform: win
- kind: mac
os: macos-latest
platform: osx
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Setup Node Environment
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build:${{ matrix.platform }} --publish=never