We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2d0300 commit ce60e8dCopy full SHA for ce60e8d
1 file changed
.github/workflows/aur-taskers-bin.yml
@@ -73,7 +73,15 @@ jobs:
73
install -dm700 ~/.ssh
74
printf '%s\n' "$AUR_SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519
75
chmod 600 ~/.ssh/id_ed25519
76
- ssh-keyscan aur.archlinux.org >> ~/.ssh/known_hosts
+ ssh-keyscan -H aur.archlinux.org >> ~/.ssh/known_hosts
77
+ cat > ~/.ssh/config <<CFG
78
+ Host aur.archlinux.org
79
+ IdentityFile ~/.ssh/id_ed25519
80
+ IdentitiesOnly yes
81
+ StrictHostKeyChecking accept-new
82
+ UserKnownHostsFile ~/.ssh/known_hosts
83
+ CFG
84
+ chmod 600 ~/.ssh/config
85
86
- name: Clone AUR package repo
87
shell: bash
0 commit comments