Compare commits

...

2 Commits

Author SHA1 Message Date
ktyl b98a7b1e55 add drone ci
continuous-integration/drone/push Build is failing Details
2022-09-27 08:48:47 +01:00
ktyl 9b184204dc remove cv submodule 2022-09-27 08:48:32 +01:00
3 changed files with 42 additions and 4 deletions

42
.drone.yml Normal file
View File

@ -0,0 +1,42 @@
kind: pipeline
type: docker
name: deploy
steps:
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- name: deploy
image: ubuntu
environment:
HOST:
from_secret: host
USER:
from_secret: user
SSH_KEY:
from_secret: ssh_key
when:
branch:
- drone
commands:
# install stuff
- apt-get update -qq > /dev/null
- apt-get install ssh rsync -qq > /dev/null
- apt-get install python3 make -qq > /dev/null
# configure ssh
- eval $(ssh-agent -s)
- mkdir -p ~/.ssh
- echo "$SSH_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-add
- echo "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
# build site
- make all
# run operations on remote host

3
.gitmodules vendored
View File

@ -4,6 +4,3 @@
[submodule "blog"]
path = blog
url = https://github.com/ktyldev/blog.git
[submodule "cv"]
path = cv
url = https://gitlab.com/ktyldev/cv.git

1
cv

@ -1 +0,0 @@
Subproject commit da919196896f04f103c83812f2187fa44c56096f