Skip to content

Commit

Permalink
Windows workflow added (Resolved #27)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ascensionist authored Oct 20, 2024
1 parent 8336f78 commit d94bad5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Node.js CI

on: [push]

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm install -g electron-builder
- run: npm run build
- uses: actions/[email protected]
with:
name: Windows Executables
path: dist/*.exe

0 comments on commit d94bad5

Please sign in to comment.