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 3d43301 commit 463bc91Copy full SHA for 463bc91
.github/workflows/ci.yml
@@ -39,6 +39,15 @@ jobs:
39
if: matrix.os == 'macos-latest'
40
run: brew install gpgme
41
42
+ - name: Install GnuPG on Windows
43
+ if: matrix.os == 'windows-latest'
44
+ run: |
45
+ $path = [Environment]::GetEnvironmentVariable("path", "machine")
46
+ $newPath = ($path.Split(';') | Where-Object { $_ -eq 'C:\ProgramData\chocolatey\bin' }) -join ';'
47
+ [Environment]::SetEnvironmentVariable("path", $newPath, "machine")
48
+ choco install gpg4win
49
+ refreshenv
50
+
51
- name: Build Debug
52
run: |
53
rustc --version
0 commit comments