File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 2929 with :
3030 workflow : " build-libs.yml"
3131 path : ./libs
32- - name : Setup MSBuild.exe
33- 32+ - uses : actions/setup-dotnet@v1
33+ with :
34+ dotnet-version : ' 6.0.x'
3435 - name : Generate Package Version
3536 run : |
3637 $json = Invoke-WebRequest 'https://api.github.com/repos/trinsic-id/okapi/releases/latest' `
4344
4445 - name : Create Nuget package
4546 run : |
46- python ../devops/build_sdks.py --github-token=${{ secrets.API_GITHUB_TOKEN }} --package-version=${{ github.event.inputs.packageVersion }}
47- msbuild -target:restore,pack -property:SkipNativeLibsCopy=true -property:Configuration=Release -property:PackageVersion=$env:PACKAGE_VERSION
47+ dotnet restore
48+ dotnet build -c Release
49+ dotnet pack -p:SkipNativeLibsCopy=true -p:Configuration=Release -p:PackageVersion=$env:PACKAGE_VERSION
4850 shell : pwsh
4951 working-directory : ./dotnet/Library/Okapi
5052
You can’t perform that action at this time.
0 commit comments