Skip to content

Commit

Permalink
Fix build command path in GitHub Actions workflow
Browse files Browse the repository at this point in the history
The build command path in the GitHub Actions workflow file was incorrect. This update removes the unnecessary backslash at the start of the path to ensure the build process runs correctly on the CI server.
  • Loading branch information
ivandrofly committed Nov 20, 2024
1 parent 2b2cf73 commit bae2b27
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 @@ -31,7 +31,7 @@ jobs:

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

# Run tests (optional)
#- name: Run tests
Expand Down

0 comments on commit bae2b27

Please sign in to comment.