drone checkout from forked repo

This commit is contained in:
Dan Ballard 2021-09-07 17:41:49 -07:00
parent 7737085a28
commit 47510be645
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ steps:
# force by pass of ssh host key check, less secure # force by pass of ssh host key check, less secure
- ssh-keyscan -H git.openprivacy.ca >> ~/.ssh/known_hosts - ssh-keyscan -H git.openprivacy.ca >> ~/.ssh/known_hosts
# use Drone ssh var instead of hardcode to allow forks to build (gogs@git.openprivacy.ca:cwtch.im/cwtch-ui.git) # use Drone ssh var instead of hardcode to allow forks to build (gogs@git.openprivacy.ca:cwtch.im/cwtch-ui.git)
- git clone $DRONE_GIT_SSH_URL . - git clone gogs@git.openprivacy.ca:$DRONE_REPO.git .
- git checkout $DRONE_COMMIT - git checkout $DRONE_COMMIT
- name: fetch - name: fetch
@ -187,7 +187,7 @@ steps:
- git init - git init
# -o UserKnownHostsFile=../known_hosts # -o UserKnownHostsFile=../known_hosts
- git config core.sshCommand 'ssh -o StrictHostKeyChecking=no -i ../id_rsa' - git config core.sshCommand 'ssh -o StrictHostKeyChecking=no -i ../id_rsa'
- git remote add origin $Env:DRONE_GIT_SSH_URL - git remote add origin gogs@git.openprivacy.ca:$Env:DRONE_REPO.git
- git pull origin trunk - git pull origin trunk
- git fetch --tags - git fetch --tags
- git checkout $Env:DRONE_COMMIT - git checkout $Env:DRONE_COMMIT