Skip to content

Publish Yura.Shared to NuGet #1

Publish Yura.Shared to NuGet

Publish Yura.Shared to NuGet #1

Workflow file for this run

name: Publish
on: push
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Pack
run: dotnet pack Yura.Shared --configuration Release --output artifacts
- name: Push
run: dotnet nuget push artifacts/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json