Compare commits
No commits in common. "06033b36a82edd1e905a50747fd3318494424543" and "c902fa83896cf8ab3823c7d5fe5b30a83826892f" have entirely different histories.
06033b36a8
...
c902fa8389
10
.drone.yml
10
.drone.yml
|
@ -1,6 +1,6 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: deploy
|
name: hello
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: deploy
|
- name: deploy
|
||||||
|
@ -18,18 +18,16 @@ steps:
|
||||||
# install stuff
|
# install stuff
|
||||||
- apt-get update -qq > /dev/null
|
- apt-get update -qq > /dev/null
|
||||||
- apt-get install ssh rsync -qq > /dev/null
|
- apt-get install ssh rsync -qq > /dev/null
|
||||||
|
# configure ssh identity
|
||||||
# configure ssh identity by importing ssh key from secrets and adding it to
|
|
||||||
# ssh-agent. also disable strict host key checking as this is the first time
|
|
||||||
# the ephemeral runner is connecting to the remote host
|
|
||||||
- which ssh-agent
|
- which ssh-agent
|
||||||
- eval $(ssh-agent -s)
|
- eval $(ssh-agent -s)
|
||||||
- mkdir -p ~/.ssh
|
- mkdir -p ~/.ssh
|
||||||
|
# import ssh key
|
||||||
- echo "$SSH_KEY" > ~/.ssh/id_rsa
|
- echo "$SSH_KEY" > ~/.ssh/id_rsa
|
||||||
- chmod 600 ~/.ssh/id_rsa
|
- chmod 600 ~/.ssh/id_rsa
|
||||||
- ssh-add
|
- ssh-add
|
||||||
|
# skip key checking as this runner has never seen the host before
|
||||||
- echo "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
- echo "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
||||||
|
|
||||||
# run operations on the remote host
|
# run operations on the remote host
|
||||||
- ssh "$${USER}@$${HOST}" "[[ ! -d ~/gemini/content ]] || rm -r ~/gemini/content"
|
- ssh "$${USER}@$${HOST}" "[[ ! -d ~/gemini/content ]] || rm -r ~/gemini/content"
|
||||||
- rsync -rP content "$${USER}@$${HOST}:gemini"
|
- rsync -rP content "$${USER}@$${HOST}:gemini"
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
#########
|
#########
|
||||||
```
|
```
|
||||||
|
|
||||||
|
hello pizza
|
||||||
|
|
||||||
=> ./gemlog/index.gmi Gemlog
|
=> ./gemlog/index.gmi Gemlog
|
||||||
=> ./books/index.gmi Books
|
=> ./books/index.gmi Books
|
||||||
=> ./music/index.gmi Music
|
=> ./music/index.gmi Music
|
||||||
|
|
Loading…
Reference in New Issue