Skip to content

Commit

Permalink
tt
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Feb 29, 2024
1 parent 380e0d0 commit e7f4362
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/drevops-test-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ jobs:
mkdir -p $HOME/.ssh
ssh-keygen -t rsa -b 4096 -m PEM -N '' -f $HOME/.ssh/id_rsa
chmod 600 $HOME/.ssh/id_rsa
SSH_AUTH_SOCK=$(ssh-agent -a ${HOME}/ssh-agent.sock | grep SSH_AUTH_SOCK | cut -d= -f2 | cut -d; -f1)
echo "$(ssh-agent -a ${HOME}/ssh-agent.sock)" > ssh-agent-output
export SSH_AUTH_SOCK=$(grep SSH_AUTH_SOCK ssh-agent-output | cut -d';' -f1 | cut -d= -f2)
echo "SSH_AUTH_SOCK=${SSH_AUTH_SOCK}" >> $GITHUB_ENV
- name: Install dependencies
Expand Down

0 comments on commit e7f4362

Please sign in to comment.