From 787482a65d5135024cac952563411bbe0790d2b4 Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 8 Dec 2023 20:22:27 +0900 Subject: [PATCH] test --- .forgejo/workflows/ssh-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ssh-test.yml b/.forgejo/workflows/ssh-test.yml index 6e149390..4650154b 100644 --- a/.forgejo/workflows/ssh-test.yml +++ b/.forgejo/workflows/ssh-test.yml @@ -41,8 +41,8 @@ jobs: - name: "Setup: SSH" run: | mkdir /root/.ssh - echo ${{ secrets.SSH_PUBLIC_KEY }} > /root/.ssh/id_ed25519.pub - echo ${{ secrets.SSH_PRIVATE_KEY }} > /root/.ssh/id_ed25519 + echo "${{ secrets.SSH_PUBLIC_KEY }}" > /root/.ssh/id_ed25519.pub + echo "${{ secrets.SSH_PRIVATE_KEY }}" > /root/.ssh/id_ed25519 cat /root/.ssh/id_ed25519.pub # - name: "Nix build" # run: |