File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88jobs :
99 release :
1010 runs-on : ubuntu-latest
11+
1112 steps :
1213 - name : Checkout code
1314 uses : actions/checkout@v3
@@ -24,12 +25,10 @@ jobs:
2425 run : dotnet build --configuration Release --no-restore
2526
2627# - name: Run tests
27- # run: dotnet test --filter "FullyQualifiedName~MapperIA.Tests.Mappers.ClassMapper.ClassMapperTests | FullyQualifiedName~MapperIA.Tests.Mappers.PDFMapper.PDFMapperTests"
28-
29- - name : Publish to GitHub NuGet
30- run : dotnet nuget push **/bin/Release/*.nupkg --source "github" --api-key ${{ secrets.GITHUB_TOKEN }}
31- env :
32- NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
28+ # run: dotnet test
3329
3430 - name : Add GitHub NuGet source
35- run : dotnet nuget add source https://nuget.pkg.github.com/01Dri/index.json --name github --username 01Dri --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
31+ run : dotnet nuget add source "https://nuget.pkg.github.com/01Dri/index.json" --name "github" --username "01Dri" --password "${{ secrets.GITHUB_TOKEN }}" --store-password-in-clear-text
32+
33+ - name : Publish to GitHub Packages (NuGet)
34+ run : dotnet nuget push **/bin/Release/*.nupkg --source "github" --api-key "${{ secrets.GITHUB_TOKEN }}"
You can’t perform that action at this time.
0 commit comments