Skip to content

Update FeatureChecker for .NET 10 #8

Update FeatureChecker for .NET 10

Update FeatureChecker for .NET 10 #8

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@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore ManagedCode.FeatureChecker.sln
- name: Build
run: dotnet build ManagedCode.FeatureChecker.sln --configuration Release --no-restore
- name: Test
run: dotnet test --solution ManagedCode.FeatureChecker.sln --configuration Release --no-restore
- name: Pack
run: dotnet pack ManagedCode.FeatureChecker/ManagedCode.FeatureChecker.csproj --configuration Release --no-build -p:IncludeSymbols=false -p:SymbolPackageFormat=snupkg
- 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 --skip-duplicate
done