Skip to content

Commit

Permalink
fix: disable strict host key verification for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
todpunk committed Jan 1, 2025
1 parent 54416b1 commit c9ed8a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ echo "REACTORCIDE_JOB_ENTRYPOINT=${REACTORCIDE_JOB_ENTRYPOINT}" >> jobenv.sh
touch cisshkey
echo "${CI_SSH_KEY}" >> cisshkey
chmod 600 cisshkey
scp -i cisshkey -P ${CI_HOST_PORT} runnerenv.sh jobenv.sh ${CI_HOST_ADDRESS}:~/
scp -i cisshkey -o "StrictHostKeyChecking=no" -P ${CI_HOST_PORT} runnerenv.sh jobenv.sh ${CI_HOST_ADDRESS}:~/
# external-root.sh should already exist per reactorcide requirements
ssh ${CI_HOST_ADDRESS} -i cisshkey -p ${CI_HOST_PORT} external-root.sh
ssh ${CI_HOST_ADDRESS} -i cisshkey -o "StrictHostKeyChecking=no" -p ${CI_HOST_PORT} external-root.sh

0 comments on commit c9ed8a6

Please sign in to comment.