Skip to content

SemanticKernel.DashScope/v0.3.2 #10

SemanticKernel.DashScope/v0.3.2

SemanticKernel.DashScope/v0.3.2 #10

Workflow file for this run

name: Release Package
on:
release:
types:
- published
jobs:
release:
environment: nuget
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8'
- name: pack and push
env:
nuget_key: ${{ secrets.NUGETAPIKEY }}
run: |
./pack.sh ${GITHUB_REF:10}
dotnet nuget push ./artifacts/*.* -s https://api.nuget.org/v3/index.json -k $nuget_key --skip-duplicate