Skip to content

Commit

Permalink
Work around a StoreBroker bug
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Feb 2, 2024
1 parent 1c448d4 commit 00a39e9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 00a39e9

Please sign in to comment.