From c73d6a0bdcbd3700096308525c4357919e7e5e01 Mon Sep 17 00:00:00 2001 From: Jake Koester Date: Thu, 8 Aug 2024 19:19:09 -0600 Subject: [PATCH] fix submodule/pipline issue, attempt 3 --- .github/actions/common-steps/action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/common-steps/action.yaml b/.github/actions/common-steps/action.yaml index f47df279..5dfd2664 100644 --- a/.github/actions/common-steps/action.yaml +++ b/.github/actions/common-steps/action.yaml @@ -21,14 +21,14 @@ runs: - name: Add SSH private key shell: bash run: | - echo "${{ inputs.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa + echo "${{ inputs.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519 + chmod 600 ~/.ssh/id_ed25519 - name: Start SSH agent and add key shell: bash run: | eval "$(ssh-agent -s)" - ssh-add ~/.ssh/id_rsa + ssh-add ~/.ssh/id_ed25519 - name: Set Azure CLI config directory shell: bash