Skip to content

Commit

Permalink
build: Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebz committed Feb 4, 2024
1 parent 86f436b commit ae93eeb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Expand Up @@ -7,8 +7,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- run: dotnet build -c Release

- run: dotnet nuget push */bin/Release/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_TOKEN }}

0 comments on commit ae93eeb

Please sign in to comment.