Fix: decode base64-encoded AUR SSH key from secret

main
Sean Doran 2026-02-27 11:48:36 -05:00
parent 2a3ca2739f
commit f4c4781966
No known key found for this signature in database
GPG Key ID: A9D7D25CD95E8579
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ jobs:
- name: Set up SSH for AUR
run: |
mkdir -p ~/.ssh
printf '%s' "${{ secrets.AUR_SSH_KEY }}" > ~/.ssh/aur
printf '%s' "${{ secrets.AUR_SSH_KEY }}" | base64 -d > ~/.ssh/aur
chmod 600 ~/.ssh/aur
ssh-keyscan aur.archlinux.org >> ~/.ssh/known_hosts
ssh -i ~/.ssh/aur -o StrictHostKeyChecking=no -T aur@aur.archlinux.org || true