We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5765ea commit 9b9c57fCopy full SHA for 9b9c57f
1 file changed
.github/actions/deploy/action.yml
@@ -27,11 +27,12 @@ runs:
27
using: "composite"
28
steps:
29
- run: |
30
+ echo $SSHKEY
31
sudo apt install openssh-client
32
sudo apt-get install python3-pip
33
pip install docker-compose==1.23.2
34
eval $(ssh-agent -s)
- echo "${SSHKEY}" | tr -d '\r' | ssh-add - > /dev/null
35
+ echo "$SSHKEY" | tr -d '\r' | ssh-add - > /dev/null
36
mkdir -p ~/.ssh
37
chmod 700 ~/.ssh
38
ssh-keyscan $SERVER >> ~/.ssh/known_hosts
0 commit comments