We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c637eed commit 8d3d971Copy full SHA for 8d3d971
.github/workflows/windows.yml
@@ -29,6 +29,14 @@ jobs:
29
name: Building Windows aarch64
30
runs-on: windows-arm64
31
steps:
32
+ - name: Install Git
33
+ run: |
34
+ Set-ExecutionPolicy Bypass -Scope Process -Force
35
+ [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
36
+ iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
37
+ choco install -y --no-progress git
38
+ echo "C:\Program Files\Git\cmd" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
39
+
40
- uses: actions/checkout@v3
41
42
- name: Checkout submodules
0 commit comments