Skip to content

Commit

Permalink
Fix pwsh script
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 committed May 18, 2024
1 parent 71a0977 commit d51947c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
run: |
New-Item -ItemType Directory -Force -Path output
$file = Get-Item "$env:BUILD_DIRECTORY/application/theterminal*.exe"
Move-Item -Path "$file.FullName" -Destination output -Force
windeployqt "$file.FullName" --qmlimport="$env:INSTALL_DIRECTORY/qml" --qmldir="$env:SOURCE_DIRECTORY" --libdir="$env:INSTALL_DIRECTORY/bin"
Move-Item -Path $file.FullName -Destination output -Force
windeployqt $file.FullName --qmlimport="$env:INSTALL_DIRECTORY/qml" --qmldir="$env:SOURCE_DIRECTORY" --libdir="$env:INSTALL_DIRECTORY/bin"
- name: Upload theterminal artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit d51947c

Please sign in to comment.