Skip to content

Commit

Permalink
Fix glob pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 committed May 18, 2024
1 parent eab094c commit fc1c585
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 @@ -53,8 +53,8 @@ jobs:
INSTALL_DIRECTORY: ${{ steps.theterminal.outputs.install-directory }}
run: |
New-Item -ItemType Directory -Force -Path output
$executable = Move-Item -Path "$env:BUILD_DIRECTORY/application/theterminal*.exe" -Destination output -Force -PassThru
windeployqt "$executable.FullName" --qmlimport="$env:INSTALL_DIRECTORY/qml" --qmldir="$env:SOURCE_DIRECTORY" --libdir="$env:INSTALL_DIRECTORY/bin"
$executable = Move-Item -Path "$env:BUILD_DIRECTORY/theterminal*.exe" -Destination output -Force -PassThru
windeployqt $executable.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 fc1c585

Please sign in to comment.