Skip to content
This repository was archived by the owner on Jun 21, 2024. It is now read-only.

Commit 8ee276b

Browse files
authored
Create build.yml
github: workflows
1 parent 0e4f19d commit 8ee276b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Build
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
buildwin:
6+
runs-on: windows-2022
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: Install and Build
10+
run:
11+
npm install && npm run build
12+
- name: Upload File
13+
uses: actions/upload-artifact@v2
14+
with:
15+
name: windows
16+
path: dist_electron/*exe

0 commit comments

Comments
 (0)