Skip to content

Commit

Permalink
fix(ci): weird issue of powershell not copying anything
Browse files Browse the repository at this point in the history
  • Loading branch information
Xenapte committed Feb 5, 2025
1 parent d5ce962 commit a3c21d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
working-directory: ${{github.workspace}}/build/BallanceMMOClient
run: |
mkdir ${{env.BUILD_TYPE}}
Get-ChildItem -Path . -Include *.dll, *.bmod* | Copy-Item -Destination ${{env.BUILD_TYPE}} -Force
Copy-Item -Path *.dll, *.bmod, *.bmodp -Destination ${{env.BUILD_TYPE}} -Force
- name: Test
working-directory: ${{github.workspace}}
Expand All @@ -113,7 +113,7 @@ jobs:
echo "`n#define BMMO_WITH_PLAYER_SPECTATION" | Out-File "BallanceMMOClient/bml_includes.h" -Encoding "UTF8" -Append
cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
cd ${{github.workspace}}/build/BallanceMMOClient
Get-ChildItem -Path . -Include *.dll, *.bmod* | Copy-Item -Destination ${{env.BUILD_TYPE}} -Force
Copy-Item -Path *.dll, *.bmod, *.bmodp -Destination ${{env.BUILD_TYPE}} -Force
- name: Release artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit a3c21d5

Please sign in to comment.