From 7f8754a25637ecabd8d16df93fae6f929a5a2e9f Mon Sep 17 00:00:00 2001 From: Morten Nielsen <1378165+dotMorten@users.noreply.github.com> Date: Wed, 22 Dec 2021 19:33:53 -0800 Subject: [PATCH] Create publish.yml --- .github/workflows/publish.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..d0002c3 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,21 @@ +name: Publish + +on: + workflow_dispatch: + +jobs: + build: + + runs-on: windows-latest + + steps: + - name: Clone NmeaParser + uses: actions/checkout@v1 + + - name: Setup Visual Studio Command Prompt + uses: microsoft/setup-msbuild@v1.0.2 + + - name: Build + run: | + msbuild /restore /t:Build src/NmeaParser/NmeaParser.csproj /p:Configuration=Release +