Skip to content

Commit

Permalink
feat: allow additional pacman key (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
boredland authored Aug 15, 2021
1 parent 5ce6421 commit f80420c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ inputs:
gpg-passphrase:
description: 'phrase to decrypt the gpg secret key if given'
required: false
additional-trusted-gpg:
description: 'gpg keyids that pacman should trust'
required: false
cdn77-host:
description: 'cdn77 upload credentials'
required: false
Expand Down Expand Up @@ -154,6 +157,10 @@ runs:
sudo pacman-key --init
sudo pacman-key --populate archlinux manjaro
for gpg_key in ${{ inputs.additional-trusted-gpg }}; do
sudo pacman-key --keyserver keys.openpgp.org --recv-key $gpg_key
done
- id: install-arch-install-scripts
shell: bash
env:
Expand Down

0 comments on commit f80420c

Please sign in to comment.