Skip to content

Commit f1b7566

Browse files
committed
pacbrew: enable mirror upload
1 parent 9cef341 commit f1b7566

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/pacbrew.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ jobs:
3535
key: ${{ secrets.SSH_PRIVATE_KEY }}
3636
name: key_id_main
3737
known_hosts: ${{ secrets.KNOWN_HOSTS }}
38+
config: |
39+
Host main
40+
HostName ${{ secrets.SSH_HOST }}
41+
User ${{ secrets.SSH_USER }}
42+
IdentityFile ~/.ssh/key_id_main
3843
#- name: Adding main key to known hosts
3944
# run: ssh-keyscan -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
4045

@@ -46,6 +51,11 @@ jobs:
4651
key: ${{ secrets.SSH_PRIVATE_KEY_US }}
4752
name: key_id_mirror
4853
known_hosts: ${{ secrets.KNOWN_HOSTS_US }}
54+
config: |
55+
Host mirror
56+
HostName ${{ secrets.SSH_HOST_US }}
57+
User ${{ secrets.SSH_USER }}
58+
IdentityFile ~/.ssh/key_id_mirror
4959
#- name: Adding mirror key to known hosts
5060
# run: ssh-keyscan -H ${{ secrets.SSH_HOST_US }} >> ~/.ssh/known_hosts
5161

0 commit comments

Comments
 (0)