Skip to content

Commit

Permalink
ISSUE-204: remove the protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
beto-aveiga committed Dec 10, 2024
1 parent f52104d commit 73ae0a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scaffold/github/actions/acquia/deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ runs:
ENVIRONMENT="${{ inputs.environment }}"
APPLICATION=${ENVIRONMENT%.*}
drainpipe_exec "acli remote:aliases:download --no-interaction $APPLICATION"
drainpipe_exec "ssh-keyscan -t rsa "${{ inputs.environment-url }}" >> ~/.ssh/known_hosts"
hostname="${{ inputs.environment-url }}"
hostname="${hostname#*://}"
drainpipe_exec "ssh-keyscan -t rsa "$hostname" >> ~/.ssh/known_hosts"
# debug site aliases
drainpipe_exec "./vendor/bin/drush site:alias"
Expand Down

0 comments on commit 73ae0a3

Please sign in to comment.