Skip to content

Commit 6ae8d1f

Browse files
committed
remove-packages-from-pacman-repository: fix GPG step
When I tried to run the workflow, it failed: gpg: directory '/d/a/_temp/home/.gnupg' created gpg: error running '/usr/bin/dirmngr': probably not installed gpg: failed to start dirmngr '/usr/bin/dirmngr': Configuration error gpg: can't connect to the dirmngr: Configuration error gpg: keyserver receive failed: No dirmngr For full details, see https://github.com/git-for-windows/git-for-windows-automation/actions/runs/13433913836/job/37531770052#step:6:18 The reason is obviously that the `dirmngr.exe` executable is not part of the Git for Windows SDK `makepkg-git` flavor. So let's use the `build-installers` flavor instead; This succeeds in importing the GPG keys. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 20d5ca1 commit 6ae8d1f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/remove-packages-from-pacman-repository.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ jobs:
3333
- name: Download Git for Windows SDK
3434
uses: git-for-windows/setup-git-for-windows-sdk@v1
3535
with:
36-
flavor: makepkg-git
37-
architecture: x86_64
38-
msys: true
36+
flavor: build-installers
3937

4038
- name: Clone build-extra
4139
shell: bash

0 commit comments

Comments
 (0)