Fix FeatureChecker agent commands #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |