File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 152
152
default : false
153
153
type : boolean
154
154
155
+ install-gpg :
156
+ description : Ensure all build images have GnuPG installed
157
+ required : false
158
+ default : false
159
+ type : boolean
160
+
155
161
# allow single build per branch or PR
156
162
concurrency :
157
163
group : ${{ github.workflow }}-${{ github.ref }}
@@ -262,6 +268,23 @@ jobs:
262
268
run : |
263
269
brew install mercurial
264
270
271
+ - name : Install GnuPG
272
+ if : >
273
+ inputs.install-gpg &&
274
+ steps.should-run.conclusion == 'success' &&
275
+ matrix.os == 'windows-latest'
276
+ run : |
277
+ $env:PATH = "C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\ProgramData\chocolatey\bin"
278
+ [Environment]::SetEnvironmentVariable("Path", $env:PATH, "Machine")
279
+ choco install --yes gpg4win
280
+ echo "C:\Program Files (x86)\Gpg4win\..\GnuPG\bin" >> $env:GITHUB_PATH
281
+
282
+ - name : Check GnuPG
283
+ if : >
284
+ inputs.install-gpg &&
285
+ steps.should-run.conclusion == 'success'
286
+ run : gpg --version
287
+
265
288
- name : Show free disk space
266
289
if : steps.should-run.conclusion == 'success'
267
290
run : df -h
You can’t perform that action at this time.
0 commit comments