Skip to content

Commit 346abda

Browse files
authored
Create main.yml
1 parent 5630690 commit 346abda

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/main.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ github/3way-diff-gplv2 ]
6+
pull_request:
7+
branches: [ github/3way-diff-gplv2 ]
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.vs2019.cmd
21+
.\BuildArc.cmd
22+
23+
- name: Upload zip
24+
uses: actions/upload-artifact@v2-preview
25+
with:
26+
name: frhed.zip
27+
path: Dist/*.zip

0 commit comments

Comments
 (0)