Merge remote-tracking branch 'origin/dev' into dev #490
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: Publish Preview NuGet | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| nuget: | |
| runs-on: [ self-hosted, type-cx42, type-cpx41, image-x86-app-docker-ce ] | |
| env: | |
| NUGET_PACKAGES: "/mnt/cache/.nuget/packages" | |
| DOTNET_INSTALL_DIR: "/mnt/cache/.dotnet" | |
| steps: | |
| - | |
| name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.8 | |
| - | |
| name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '9.0.x' | |
| - | |
| name: Run tests | |
| run: dotnet test --framework net9.0 | |
| - | |
| name: Publish test results | |
| uses: EnricoMi/publish-unit-test-result-action/linux@v2 | |
| if: always() | |
| with: | |
| files: | | |
| test-results/**/*.xml | |
| test-results/**/*.trx | |
| - | |
| name: Create and push NuGet package | |
| run: | | |
| dotnet pack -c Debug -o nuget | |
| dotnet nuget push nuget/**/*.nupkg --skip-duplicate --api-key ${{ secrets.MYGET_API_KEY }} --source https://www.myget.org/F/${{ vars.MYGET_FEED_NAME || 'eventuous' }}/api/v3/index.json | |
| env: | |
| NUGET_AUTH_TOKEN: ${{ github.token }} |