Skip to content

updated package.yml file #13

updated package.yml file

updated package.yml file #13

Workflow file for this run

name: Package
on:
push:
branches:
- master
paths:
- 'CleanArcTemplate.nuspec'
jobs:
publish:
name: "Run the unit tests"
runs-on: ubuntu-latest
steps:
- name: "run xUnit"
run: |
ls
dotnet test --logger "trx;LogFileName=test-results.trx" || true
- name: Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Unit Tests
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true
name: Publish to NuGet.org

Check failure on line 30 in .github/workflows/package.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/package.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: nuget/setup-nuget@v1
with:
nuget-version: '6.x'
- name: Create the package
run: nuget pack CleanArcTemplate.nuspec -NoDefaultExcludes
- name: Publish the package
run: nuget push *.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}} -SkipDuplicate