mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-01-27 10:54:15 +01:00
22 lines
398 B
YAML
22 lines
398 B
YAML
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
|
|
|