Skip to content

Commit bf35814

Browse files
committed
Add .github/workflows/main.yml
1 parent b5feb88 commit bf35814

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/main.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
if: "!contains(github.event.head_commit.message, 'skip ci')"
12+
13+
runs-on: windows-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Build
19+
run: |
20+
.\BuildBin.vs2022.cmd
21+
.\BuildArc.cmd
22+
23+
- name: Upload zip
24+
uses: actions/upload-artifact@v2-preview
25+
with:
26+
name: winwebdiff.zip
27+
path: Dist/winwebdiff-*.zip

0 commit comments

Comments
 (0)