fix: chmod for ssh keys

This commit is contained in:
Noah Masur 2024-03-24 18:51:35 -04:00
parent edaf95cc1c
commit 316439dc9a

View File

@ -123,7 +123,9 @@ jobs:
if: inputs.action == 'create' if: inputs.action == 'create'
run: | run: |
echo "${{ env.DEPLOY_IDENTITY_BASE64 }}" | base64 -d > deploy_ed25519 echo "${{ env.DEPLOY_IDENTITY_BASE64 }}" | base64 -d > deploy_ed25519
chmod 0600 deploy_ed25519
echo "${{ env.ARROW_IDENTITY_BASE64 }}" | base64 -d > arrow_ed25519 echo "${{ env.ARROW_IDENTITY_BASE64 }}" | base64 -d > arrow_ed25519
chmod 0600 arrow_ed25519
- name: Copy Identity File to Host - name: Copy Identity File to Host
if: inputs.action == 'create' if: inputs.action == 'create'