From d076b118c4cab419716ef63591bb3de173facab5 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Thu, 7 Mar 2024 08:11:06 +0100 Subject: [PATCH] ci: Fix packaging step on Windows WiX doesn't seem to be on the path any longer, so it must be added manually as a temoprary workaround. --- .github/workflows/windows.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 50c351d91d0..4d203980f27 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -78,6 +78,11 @@ jobs: python mach fetch python mach bootstrap-gstreamer cargo install --path support/crown + # For some reason WiX isn't currently on the GitHub runner path. This is a + # temporary workaround until that is fixed. + - name: Add WiX to Path + run: | + "$env:WIX\bin" >> $env:GITHUB_PATH - name: Build (${{ inputs.profile }}) run: | python mach build --${{ inputs.profile }}