From adfc3f19377432a3f45de1b36c6331e435604240 Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 8 Dec 2023 20:31:22 +0900 Subject: [PATCH] test --- .forgejo/workflows/ssh-test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/ssh-test.yml b/.forgejo/workflows/ssh-test.yml index 1810bc45..8f48dc30 100644 --- a/.forgejo/workflows/ssh-test.yml +++ b/.forgejo/workflows/ssh-test.yml @@ -43,6 +43,9 @@ jobs: - name: "Setup: SSH" run: | mkdir /root/.ssh + chmod 700 /root/.ssh + chmod 600 /root/.ssh/id_ed25519 + chmod 644 /root/.ssh/id_ed25519.pub echo "${{ secrets.SSH_PUBLIC_KEY }}" > /root/.ssh/id_ed25519.pub echo "${{ secrets.SSH_PRIVATE_KEY }}" > /root/.ssh/id_ed25519 ssh -o "StrictHostKeyChecking=no" albert@100.64.0.14 "ls /Storage"