1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-12 09:03:00 +01:00

Add GitHub Actions workflow for Windows build

This commit is contained in:
Nayam Amarshe 2025-01-01 14:42:45 +05:30
parent 088f3256c5
commit 4fc0b034e4

28
.github/workflows/build-windows.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Build for Windows
on:
workflow_dispatch:
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
with:
node-version: 18
- name: Install Modules and Build
run: |
npm install
npm run dist:win
- name: Upload Windows Build
uses: actions/upload-artifact@v3
with:
name: windows-build
path: |
dist/*.blockmap
dist/*.zip
dist/*.exe