Skip to content

Commit

Permalink
add action
Browse files Browse the repository at this point in the history
  • Loading branch information
claugner committed Dec 6, 2024
1 parent 761575b commit c5d5a47
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 c5d5a47

Please sign in to comment.