Skip to content

Commit

Permalink
Correct pathing on windows runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Codinablack authored Dec 25, 2024
1 parent 660531a commit 9b95693
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/windows_build_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,16 @@ jobs:
msbuild Black-Tek-Server.sln /p:Configuration=Debug
cmd copy Black-Tek-Server.exe BlackTek-Server-Debug.exe
del Black-Tek-Server.exe
cd D:\a\BlackTek-Server
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Windows-Artifact-${{ github.sha }}
path: |
**/BlackTek-Server/**
!**/vcpkg_installed/**
!**/build/**
~/BlackTek-Server/BlackTek-Server
!~/BlackTek-Server/BlackTek-Server/vcpkg_installed
!~/BlackTek-Server/BlackTek-Server/build
- name: Create Edge Build
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
Expand Down

0 comments on commit 9b95693

Please sign in to comment.