Skip to content

Commit e3df72f

Browse files
committed
git-artifacts: correct the packager information of the Pacman packages
We currently use a bogus `PACKAGER` information that is derived from the `${{ github.actor }}`, which is the GitForWindowsHelper GitHub App. Since we're already using my personal GPG key to sign those packages, might just as well use my name as the packager, too. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent dee3b73 commit e3df72f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/git-artifacts.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@ jobs:
268268
echo '${{secrets.PRIVGPGKEY}}' | tr % '\n' | gpg $GPG_OPTIONS --import &&
269269
info="$(gpg --list-keys --with-colons "${GPGKEY%% *}" | cut -d : -f 1,10 | sed -n '/^uid/{s|uid:||p;q}')" &&
270270
git config --global user.name "${info% <*}" &&
271-
git config --global user.email "<${info#*<}"
271+
git config --global user.email "<${info#*<}" &&
272+
echo "PACKAGER=$info" >>$GITHUB_ENV
272273
env:
273274
GPGKEY: ${{secrets.GPGKEY}}
274275
- name: update check-run

0 commit comments

Comments
 (0)