Skip to content

[RELEASE] 5.2.0-beta.1 #184

[RELEASE] 5.2.0-beta.1

[RELEASE] 5.2.0-beta.1 #184

Workflow file for this run

name: Upload dotnet package
on:
push:
tags:
- "*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x" # SDK Version to use.
- name: Create the package
run: dotnet pack --configuration Release OneBlink.SDK
- name: Publish the package to Nuget
run: dotnet nuget push OneBlink.SDK/bin/Release/*.nupkg --api-key ${{secrets.NUGET_API_KEY}}