Skip to content

Commit

Permalink
[GitActions] Add missing backslash "\" char
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Popescu committed Dec 18, 2023
1 parent 8cc745c commit ad1d70e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \

0 comments on commit ad1d70e

Please sign in to comment.