Bump xunit from 2.8.0 to 2.8.1 #149
Workflow file for this run
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: Build KanaDetector | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [opened, synchronize, reopened, closed] | |
branches: [ main ] | |
workflow_dispatch: | |
env: | |
Configuration: RELEASE | |
ArtifactsName: nuget | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install .NET 6 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: NuGet restore | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c ${{ env.Configuration }} -v m --no-restore | |
- name: Run tests | |
run: dotnet test -c ${{ env.Configuration }} -v m --no-restore --no-build | |
- name: Create NuGet Artifacts | |
uses: actions/upload-artifact@v2.2.4 | |
with: | |
name: ${{ env.ArtifactsName }} | |
path: '**/*.nupkg' | |
release: | |
runs-on: ubuntu-latest | |
needs: build | |
if: contains(github.event.pull_request.labels.*.name, 'release') && github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Download NuGet Artifacts | |
uses: actions/download-artifact@v2.0.10 | |
with: | |
name: ${{ env.ArtifactsName }} | |
- name: NuGet push | |
env: | |
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }} | |
NUGET_SOURCE_URL: https://api.nuget.org/v3/index.json | |
PACKAGE_GITHUB_AUTH_TOKEN: ${{ secrets.PACKAGE_GITHUB_API_KEY }} | |
PACKAGE_GITHUB_SOURCE_URL: https://nuget.pkg.github.com/MyNihongo/index.json | |
run: | | |
dotnet nuget push -s ${{ env.NUGET_SOURCE_URL }} -k ${{ env.NUGET_AUTH_TOKEN }} **/*.nupkg | |
dotnet nuget push -s ${{ env.PACKAGE_GITHUB_SOURCE_URL }} -k ${{ env.PACKAGE_GITHUB_AUTH_TOKEN }} **/*.nupkg |