Skip to content

upgrade to gradio 5.5.0 #14

upgrade to gradio 5.5.0

upgrade to gradio 5.5.0 #14

Workflow file for this run

name: main
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- '**.linq'
- '**.gif'
workflow_dispatch:
jobs:
deploy-nuget:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: dotnet build --configuration Release
- name: Pack
run: dotnet pack --no-build --configuration Release /p:PackageReleaseNotes="See https://github.com/feiyun0112/Gradio.Net/blob/main/CHANGELOG.md for release history."
- name: Push NuGet package
run: |
dotnet nuget push **/*.nupkg --skip-duplicate --source "nuget.org" --api-key ${{ secrets.NUGET_KEY }} || true