Skip to content

Commit

Permalink
Merge pull request #63 from claugner/action
Browse files Browse the repository at this point in the history
add action
  • Loading branch information
kenvix authored Dec 7, 2024
2 parents 41e19ff + c5d5a47 commit 339ee00
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build

on:
workflow_dispatch:
push:
pull_request:

jobs:
build:
runs-on: windows-2019

steps:
- uses: actions/checkout@v4

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

- name: Build solution
run: |
msbuild USBCopyer.sln -t:build -property:Configuration=Release
msbuild USBCopyer.sln -t:build -property:Configuration=ReNet3.5
- uses: actions/upload-artifact@v4
with:
name: release
path: USBCopyer/bin/

0 comments on commit 339ee00

Please sign in to comment.