Skip to content

Commit

Permalink
Fixed copy on msbuild workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileYzn committed Feb 1, 2024
1 parent 1ba115a commit 0091de1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
mkdir publish\addons\logapi\dlls
# Move cstrike files to publish
move ${{env.SOLUTION_FILE_PATH}}\cstrike\* publish
copy ${{env.SOLUTION_FILE_PATH}}\cstrike\* publish -Recurse -Force
# Move released dll to publish
move ${{env.BUILD_CONFIGURATION}}\*.dll publish\addons\logapi\dlls
copy ${{env.BUILD_CONFIGURATION}}\*.dll publish\addons\logapi\dlls -Recurse -Force
- name: Deploy artifacts
uses: actions/upload-artifact@main
Expand Down

0 comments on commit 0091de1

Please sign in to comment.