Skip to content

Commit

Permalink
remove /bin from executable directory
Browse files Browse the repository at this point in the history
Signed-off-by: midays <[email protected]>
  • Loading branch information
midays committed Nov 25, 2024
1 parent 7e9076f commit b4d082c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/windows-nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
working-directory: ./kai-ci-temp/kai-ci
run: |
Copy-Item -Path .env.example -Destination .env
(Get-Content .env) -replace "VSCODE_EXECUTABLE_PATH=.*", "VSCODE_EXECUTABLE_PATH='C:/Program Files/Microsoft VS Code/bin/Code.exe'" | Set-Content .env
(Get-Content .env) -replace "VSCODE_EXECUTABLE_PATH=.*", "VSCODE_EXECUTABLE_PATH='C:/Program Files/Microsoft VS Code/Code.exe'" | Set-Content .env
- name: Run tests
shell: powershell
Expand Down Expand Up @@ -109,6 +109,11 @@ jobs:
path: playwright-report/
retention-days: 30

- name: Clean Up Temporary Directory
shell: powershell
run: |
Remove-Item -Recurse -Force ./kai-ci-temp
stop-ec2-instance:
needs: [ start-ec2-instance,run-tests ]
Expand Down

0 comments on commit b4d082c

Please sign in to comment.