Skip to content

Commit

Permalink
Fix incorrect paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Critical-Impact committed Jul 10, 2024
1 parent a562cbc commit 0e255a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# Create the NuGet package in the folder from the environment variable NuGetDirectory
- run: |
$env:DALAMUD_HOME = "${{ env.DALAMUD_HOME }}"
dotnet pack --configuration Release --output ${{ env.NuGetDirectory }}
dotnet pack --configuration Release --output ${{ env.NuGetDirectory }} src
# Publish the NuGet package as an artifact, so they can be used in the following jobs
- uses: actions/upload-artifact@v3
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Run tests
run: |
$env:DALAMUD_HOME = "${{ env.DALAMUD_HOME }}"
dotnet test --configuration Release
dotnet test --configuration Release src
deploy:
# Publish only when creating a GitHub Release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</PropertyGroup>

<ItemGroup>
<None Include="docs\readme.md" Pack="true" PackagePath="\"/>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>

<PropertyGroup>
Expand Down

0 comments on commit 0e255a3

Please sign in to comment.