Skip to content

Bump xunit from 2.4.2 to 2.5.0 in /templates/WPF/WpfApp #42

Bump xunit from 2.4.2 to 2.5.0 in /templates/WPF/WpfApp

Bump xunit from 2.4.2 to 2.5.0 in /templates/WPF/WpfApp #42

Workflow file for this run

name: .NET Core
on:
push:
branches: [ main ]
# Sequence of patterns matched against refs/tags
paths-ignore:
- 'README.md'
pull_request:
branches: [ main ]
workflow_dispatch:
defaults:
run:
shell: pwsh
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
7.x
- name: Build
run: dotnet pack --configuration Release -o .
- name: Upload Artifacts
if: ${{ github.event_name != 'pull_request' }}
uses: actions/upload-artifact@v3
with:
name: NuGet
path: ${{ github.workspace }}\*.nupkg
automerge:
needs: build
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/[email protected]
push_nugets:
needs: build
if: ${{ github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
name: Push NuGets
steps:
- name: Download NuGet Artifacts
uses: actions/download-artifact@v3
with:
name: NuGet
- name: Push NuGets
run: |
dotnet nuget push *.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate