Skip to content

Commit

Permalink
fix submodule/pipline issue, attempt 3
Browse files Browse the repository at this point in the history
  • Loading branch information
aperijake committed Aug 9, 2024
1 parent 6c7d311 commit c73d6a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/common-steps/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c73d6a0

Please sign in to comment.