Skip to content

Commit 339ee00

Browse files
authoredDec 7, 2024
Merge pull request #63 from claugner/action
add action
2 parents 41e19ff + c5d5a47 commit 339ee00

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎.github/workflows/build.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: build
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: windows-2019
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Add msbuild to PATH
16+
uses: microsoft/setup-msbuild@v2
17+
18+
- name: Build solution
19+
run: |
20+
msbuild USBCopyer.sln -t:build -property:Configuration=Release
21+
msbuild USBCopyer.sln -t:build -property:Configuration=ReNet3.5
22+
23+
- uses: actions/upload-artifact@v4
24+
with:
25+
name: release
26+
path: USBCopyer/bin/

0 commit comments

Comments
 (0)