Skip to content

Commit ff04892

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 491328b commit ff04892

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
@@ -266,7 +266,8 @@ jobs:
266266
echo '${{secrets.PRIVGPGKEY}}' | tr % '\n' | gpg $GPG_OPTIONS --import &&
267267
info="$(gpg --list-keys --with-colons "${GPGKEY%% *}" | cut -d : -f 1,10 | sed -n '/^uid/{s|uid:||p;q}')" &&
268268
git config --global user.name "${info% <*}" &&
269-
git config --global user.email "<${info#*<}"
269+
git config --global user.email "<${info#*<}" &&
270+
echo "PACKAGER=$info" >>$GITHUB_ENV
270271
env:
271272
GPGKEY: ${{secrets.GPGKEY}}
272273
- name: update check-run

0 commit comments

Comments
 (0)