Skip to content

Commit

Permalink
Use back ticks instead of backslashes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jörgen Sigvardsson committed Nov 6, 2023
1 parent 18f4557 commit 08d862e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
- run: |
dotnet pack --configuration Release \
--output ${{ env.NuGetDirectory }} \
--property:RepositoryCommit=${{ env.COMMIT_SHA }} \
--property:InformationalVersion=${{ env.INFORMAL_VERSION }} \
--property:AssemblyVersion=${{ env.FILE_VERSION }} \
dotnet pack --configuration Release `
--output ${{ env.NuGetDirectory }} `
--property:RepositoryCommit=${{ env.COMMIT_SHA }} `
--property:InformationalVersion=${{ env.INFORMAL_VERSION }} `
--property:AssemblyVersion=${{ env.FILE_VERSION }} `
--property:FileVersion=${{ env.FILE_VERSION }}
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 08d862e

Please sign in to comment.