Skip to content

Commit

Permalink
also download arm artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton authored Nov 3, 2024
1 parent dd4c24b commit fc132ea
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,15 @@ jobs:

- name: Create rootfs subdirectories
working-directory: ${{env.GITHUB_WORKSPACE}}
run: mkdir x64
run: |
mkdir x64
mkdir ARM64
- name: Download WSL rootfs
- name: Download WSL roots
working-directory: ${{env.GITHUB_WORKSPACE}}
run: Invoke-WebRequest https://images.fyralabs.com/images/ultramarine/41/wsl-wsl-x86_64.tar.gz -OutFile x64\install.tar.gz
run: |
Invoke-WebRequest https://images.fyralabs.com/images/ultramarine/41/wsl-wsl-x86_64.tar.gz -OutFile x64\install.tar.gz
Invoke-WebRequest https://images.fyralabs.com/images/ultramarine/41/wsl-wsl-aarch64.tar.gz -OutFile ARM64\install.tar.gz
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
Expand Down

0 comments on commit fc132ea

Please sign in to comment.