This file contains 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 | |
# runs-on: ubuntu-latest | |
steps: | |
- | |
name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- | |
name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# - | |
# name: Setup .NET | |
# uses: actions/setup-dotnet@v4 | |
# with: | |
# dotnet-version: '8.0' | |
- | |
name: Run tests | |
run: dotnet test --framework net8.0 | |
- | |
name: Publish test results | |
uses: EnricoMi/publish-unit-test-result-action/composite@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 }} |