Skip to content

Commit

Permalink
Update build solution path in GitHub Actions workflow
Browse files Browse the repository at this point in the history
Changed the msbuild command to point to "source/Plugins.sln" instead of "source/Plugins.Filter.slnf". This ensures the correct solution file is used during the build process in the workflow.
  • Loading branch information
ivandrofly committed Nov 22, 2024
1 parent ceaf80a commit 6fffeff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Build the solution
- name: Build solution
run: msbuild "source\Plugins.Filter.slnf" /p:Configuration=Release
run: msbuild "source\Plugins.sln" /p:Configuration=Release

# Copy dll to target directory
- name: Create archives
Expand Down

0 comments on commit 6fffeff

Please sign in to comment.