diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3120f2a..9aa60c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -92,11 +92,11 @@ jobs: - name: Test run: | - dotnet test - --configuration $BUILD_CONFIG - --no-restore - --no-build - --verbosity normal + dotnet test \ + --configuration $BUILD_CONFIG \ + --no-restore \ + --no-build \ + --verbosity normal \ --logger "trx;LogFileName=test-results.trx" || true timeout-minutes: 60 diff --git a/.github/workflows/pack.yml b/.github/workflows/pack.yml index d485596..a0e2bdb 100644 --- a/.github/workflows/pack.yml +++ b/.github/workflows/pack.yml @@ -49,9 +49,9 @@ jobs: - name: Pack run: | - dotnet pack - --output ./artifacts - --configuration $BUILD_CONFIG + dotnet pack \ + --output ./artifacts \ + --configuration $BUILD_CONFIG \ --version-suffix ${{ env.VERSION }} || github.event.inputs.version - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c45f8bf..a2dae5c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,7 +30,7 @@ jobs: - name: Publish packages run: | - dotnet nuget push ./artifacts/**.nupkg - --source https://api.nuget.org/v3/index.json - --api-key ${{secrets.NUGET_TOKEN}} - --skip-duplicate + dotnet nuget push ./artifacts/**.nupkg \ + --source https://api.nuget.org/v3/index.json \ + --api-key ${{secrets.NUGET_TOKEN}} \ + --skip-duplicate \