From 00a39e9c3c71ce4d4cc4786c787b28ae34e6232c Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Fri, 2 Feb 2024 12:02:18 -0800 Subject: [PATCH] Work around a StoreBroker bug --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index add11051..251430d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -557,7 +557,11 @@ jobs: - name: Install cargo-msix run: cargo install cargo-msix - name: Install StoreBroker - run: Install-Module -Name StoreBroker -Force + run: | + # TODO Revert back to installing from the PowerShell Gallery once they have uploaded a fixed version there + # Install-Module -Name StoreBroker -Force + git clone https://github.com/microsoft/StoreBroker.git + Import-Module .\StoreBroker\StoreBroker\StoreBroker.psd1 -Verbose - name: Download and extract bundled Julia versions run: | $x64Versions = Get-Content versiondb\versiondb-x86_64-pc-windows-msvc.json | ConvertFrom-Json