TASK: Add sync to github via pipelines
* To make github an auto mirror
This commit is contained in:
parent
3a37662001
commit
abdc7f0f72
1 changed files with 15 additions and 0 deletions
|
@ -5,8 +5,23 @@ before_script:
|
||||||
- mkdir -p result
|
- mkdir -p result
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
|
- sync
|
||||||
- test
|
- test
|
||||||
|
|
||||||
|
sync:github:
|
||||||
|
stage: sync
|
||||||
|
before_script:
|
||||||
|
- apt-get -y update && apt-get -y upgrade
|
||||||
|
- apt-get -y install openssh-client rsync
|
||||||
|
# SSH deploy key
|
||||||
|
- eval $(ssh-agent -s)
|
||||||
|
- ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||||
|
- mkdir -p ~/.ssh
|
||||||
|
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
||||||
|
script:
|
||||||
|
- git push github
|
||||||
|
|
||||||
|
|
||||||
lint:coding-guideline:
|
lint:coding-guideline:
|
||||||
image: php:7.0-alpine
|
image: php:7.0-alpine
|
||||||
stage: test
|
stage: test
|
||||||
|
|
Loading…
Reference in a new issue