From 316439dc9a90b02036c664f4053d13dedce69f24 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 24 Mar 2024 18:51:35 -0400 Subject: [PATCH] fix: chmod for ssh keys --- .github/workflows/arrow.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/arrow.yml b/.github/workflows/arrow.yml index ff42773..9a9607d 100644 --- a/.github/workflows/arrow.yml +++ b/.github/workflows/arrow.yml @@ -123,7 +123,9 @@ jobs: if: inputs.action == 'create' run: | echo "${{ env.DEPLOY_IDENTITY_BASE64 }}" | base64 -d > deploy_ed25519 + chmod 0600 deploy_ed25519 echo "${{ env.ARROW_IDENTITY_BASE64 }}" | base64 -d > arrow_ed25519 + chmod 0600 arrow_ed25519 - name: Copy Identity File to Host if: inputs.action == 'create'