Skip to content

Commit

Permalink
Merge pull request #14 from maotoumao/dev
Browse files Browse the repository at this point in the history
Create autobuild.yml
  • Loading branch information
maotoumao authored Aug 15, 2023
2 parents 3218440 + 3485801 commit d339257
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: 自动构建
on:
push:
branches:
- 'master'
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm run package
build-windows-legacy:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm install electron@22
- run: npm run package

0 comments on commit d339257

Please sign in to comment.