Skip to content

Merge pull request #9 from managedcode/update_to_dotnet_8 #25

Merge pull request #9 from managedcode/update_to_dotnet_8

Merge pull request #9 from managedcode/update_to_dotnet_8 #25

Workflow file for this run

name: nuget
on:
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
nuget-pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release
- name: Pack
run: dotnet pack --configuration Release
- name: publish nuget packages
run: |
shopt -s globstar
for file in **/*.nupkg
do
dotnet nuget push "$file" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
done