Fix sensor data loss on linux caused by 464dd97 (#294) #215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Nuget | |
on: | |
push: | |
create: | |
tags: [ master ] | |
workflow_dispatch: | |
jobs: | |
build_nuget: | |
name: Build Nuget | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Deploy nuget package | |
working-directory: ${{ github.workspace }} | |
run: .\make.ps1 --nuget | |
- uses: actions/upload-artifact@v2 | |
name: Upload | |
with: | |
path: ${{runner.workspace}}/libsurvive/bindings/cs/libsurvive.net/bin/Release/*.nupkg |