Compare commits
25 Commits
aeff1afdb7
...
8d9c4892f5
| Author | SHA1 | Date |
|---|---|---|
|
|
8d9c4892f5 | |
|
|
fa3c51a83f | |
|
|
79990463bc | |
|
|
c342cc34db | |
|
|
8e8d2d00da | |
|
|
c5ddb39a41 | |
|
|
03c9496756 | |
|
|
30a4a2298a | |
|
|
56e2c308f0 | |
|
|
aa8acc5ab0 | |
|
|
a20d8f984e | |
|
|
d1bb126aed | |
|
|
2846adeaf1 | |
|
|
c4172e6215 | |
|
|
96a0769ac5 | |
|
|
10bd178e3c | |
|
|
8c74a4cf4f | |
|
|
cae58fa67a | |
|
|
5649896bd6 | |
|
|
157e7fde1a | |
|
|
467b6c116d | |
|
|
2748a09017 | |
|
|
12290a85b4 | |
|
|
7328aa0e1f | |
|
|
7d26f2c099 |
20
.drone.yml
20
.drone.yml
|
|
@ -14,3 +14,23 @@ steps:
|
|||
image: lorisleiva/laravel-docker
|
||||
commands:
|
||||
- ./vendor/bin/phpunit
|
||||
|
||||
- name: github
|
||||
image: alpine/git
|
||||
environment:
|
||||
SSH_KEY:
|
||||
from_secret: id_rsa
|
||||
SSH_KEY_PUB:
|
||||
from_secret: id_rsa_pub
|
||||
commands:
|
||||
- mkdir ~/.ssh
|
||||
- echo "$SSH_KEY" | tr -d '\r' > ~/.ssh/id_rsa
|
||||
- echo "$SSH_KEY_PUB" | tr -d '\r' > ~/.ssh/id_rsa.pub
|
||||
- chmod 755 ~/.ssh
|
||||
- chmod 600 ~/.ssh/id_rsa
|
||||
- chmod 600 ~/.ssh/id_rsa.pub
|
||||
- eval $(ssh-agent)
|
||||
- ssh-add ~/.ssh/id_rsa
|
||||
- ssh-keyscan -H 'github.com' >> ~/.ssh/known_hosts
|
||||
- git remote add github git@github.com:muhep06/dgd-backupper-php.git
|
||||
- git push github master
|
||||
|
|
|
|||
Loading…
Reference in New Issue