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 +