updates femto to k4a wrapper v2.0.11 requiring latest firmwares for f… #60
This file contains hidden or 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: push_nuget | |
| # on push on master | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - README.md | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@master | |
| with: | |
| lfs: 'true' | |
| - name: Setup MSBuild.exe | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Setup Nuget.exe | |
| uses: nuget/setup-nuget@v2.0.0 | |
| - name: Publish OrbbecFemto Nuget | |
| uses: vvvv/PublishVLNuget@1.0.44 | |
| with: | |
| csproj: src\VL.Devices.AzureKinect.csproj | |
| nuspec: deployment\VL.Devices.AzureKinect.Femto.nuspec | |
| icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png | |
| icon-dst: ./deployment/nugeticon.png | |
| nuget-key: ${{ secrets.VVVV_ORG_NUGET_KEY }} | |
| - name: Publish AzureKinect Nuget | |
| uses: vvvv/PublishVLNuget@1.0.43 | |
| with: | |
| csproj: src\VL.Devices.AzureKinect.csproj | |
| nuspec: deployment\VL.Devices.AzureKinect.nuspec | |
| icon-src: https://raw.githubusercontent.com/vvvv/PublicContent/master/nugeticon.png | |
| icon-dst: ./deployment/nugeticon.png | |
| nuget-key: ${{ secrets.VVVV_ORG_NUGET_KEY }} |