Create build.yml

This commit is contained in:
Le Stagiaire
2024-07-01 14:35:10 +02:00
committed by GitHub
parent 53833652ac
commit 905424064e

27
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
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: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 10
- name: Electron Forge Action
uses: yinxulai/actions-electron-forge@0.05
with:
# GitHub authentication token
github_token: ${{ secrets.github_token }}