Launcher/.github/workflows/build.yml
Daniel Scalzi aff494100e
test.
2022-01-23 17:13:56 -05:00

30 lines
570 B
YAML

name: Build/release
on: push
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install Dependencies
run: npm ci --no-optional
shell: bash
- name: Build
env:
GH_TOKEN: ${{ secrets.github_token }}
run: npm run dist
shell: bash