Skip to content

Commit

Permalink
Path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpowell committed Sep 24, 2024
1 parent 70f14d6 commit 3a20bbc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-publish-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
working-directory: src

- name: Publish NuGet package CSnakes.Runtime
run: dotnet pack --no-build -c ${{ env.DOTNET_CONFIGURATION }} -o ./nuget -p:VersionSuffix='alpha.${{ github.run_number }}'
run: dotnet pack --no-build -c ${{ env.DOTNET_CONFIGURATION }} -o ../nuget -p:VersionSuffix='alpha.${{ github.run_number }}'
working-directory: src

- name: Publish NuGet packages as artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-publish-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
working-directory: src

- name: Publish NuGet package CSnakes.Runtime
run: dotnet pack --no-build -c ${{ env.DOTNET_CONFIGURATION }} -o ./nuget -p:VersionSuffix='beta.${{ github.run_number }}'
run: dotnet pack --no-build -c ${{ env.DOTNET_CONFIGURATION }} -o ../nuget -p:VersionSuffix='beta.${{ github.run_number }}'
working-directory: src

- name: Publish NuGet packages as artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
working-directory: src

- name: Publish NuGet package CSnakes.Runtime
run: dotnet pack --no-build -c ${{ env.DOTNET_CONFIGURATION }} -o ./nuget
run: dotnet pack --no-build -c ${{ env.DOTNET_CONFIGURATION }} -o ../nuget
working-directory: src

- name: Publish NuGet packages as artifacts
Expand Down

0 comments on commit 3a20bbc

Please sign in to comment.