From fc1c5856f06ac2048ad6726ea631d8ba0a153cb1 Mon Sep 17 00:00:00 2001 From: Victor Tran Date: Sat, 18 May 2024 13:51:19 +1000 Subject: [PATCH] Fix glob pattern --- .github/workflows/win.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml index 92384df..bc455ad 100644 --- a/.github/workflows/win.yml +++ b/.github/workflows/win.yml @@ -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: