From 3b0729451b1483eac32cfbe56bb73d1114c8615b Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 13 Feb 2025 17:58:30 +0000 Subject: [PATCH] Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .github/workflows/build_and_test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index 2a372946..b281148d 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -86,23 +86,23 @@ jobs: - name: Windows (x86) Squirrel os: windows-2022 artifact: win-ia32 - executable: "$env:LOCALAPPDATA/element-desktop*/Element.exe" + executable: "$LOCALAPPDATA/element-desktop*/Element.exe" prepare_cmd: ". './dist/squirrel-windows*/Element Setup*.exe'" - name: Windows (x86) MSI os: windows-2022 artifact: win-ia32 executable: "C:/Program Files (x86)/Element*/Element*.exe" - prepare_cmd: "msiexec ./dist/Element*.msi" + prepare_cmd: "start /wait msiexec -i ./dist/Element*.msi" - name: Windows (x64) Squirrel os: windows-2022 artifact: win-x64 - executable: "$env:LOCALAPPDATA/element-desktop*/Element.exe" + executable: "$LOCALAPPDATA/element-desktop*/Element.exe" prepare_cmd: ". './dist/squirrel-windows*/Element Setup*.exe'" - name: Windows (x64) MSI os: windows-2022 artifact: win-x64 executable: "C:/Program Files/Element*/Element*.exe" - prepare_cmd: "msiexec ./dist/Element*.msi" + prepare_cmd: "start /wait msiexec -i ./dist/Element*.msi" name: Test ${{ matrix.name }} runs-on: ${{ matrix.os }} steps: