| 
									
										
										
										
											2022-09-27 08:32:11 +01:00
										 |  |  | kind: pipeline
 | 
					
						
							|  |  |  | type: docker
 | 
					
						
							|  |  |  | name: deploy
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | steps:
 | 
					
						
							|  |  |  | - name: submodules
 | 
					
						
							| 
									
										
										
										
											2022-09-27 21:28:59 +01:00
										 |  |  |   image: archlinux
 | 
					
						
							| 
									
										
										
										
											2022-09-27 08:32:11 +01:00
										 |  |  |   commands: 
 | 
					
						
							| 
									
										
										
										
											2022-09-27 21:28:59 +01:00
										 |  |  |   - pacman -Sy --noconfirm git >/dev/null
 | 
					
						
							| 
									
										
										
										
											2022-09-27 08:32:11 +01:00
										 |  |  |   - git submodule update --init --recursive
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-27 22:13:58 +01:00
										 |  |  | - name: build
 | 
					
						
							|  |  |  |   image: archlinux
 | 
					
						
							|  |  |  |   environment:
 | 
					
						
							|  |  |  |     PYTHON_ENV: python python-pipenv python-setuptools
 | 
					
						
							|  |  |  |   when:
 | 
					
						
							|  |  |  |     branch:
 | 
					
						
							|  |  |  |     - drone
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   commands:
 | 
					
						
							|  |  |  |     # set up python
 | 
					
						
							|  |  |  |     - pacman -Sy --noconfirm make $PYTHON_ENV > /dev/null
 | 
					
						
							|  |  |  |     - pipenv install
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # build site
 | 
					
						
							|  |  |  |     - make all
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-27 08:32:11 +01:00
										 |  |  | - name: deploy
 | 
					
						
							| 
									
										
										
										
											2022-09-27 21:28:59 +01:00
										 |  |  |   image: archlinux
 | 
					
						
							| 
									
										
										
										
											2022-09-27 08:32:11 +01:00
										 |  |  |   environment:
 | 
					
						
							|  |  |  |     HOST:
 | 
					
						
							|  |  |  |       from_secret: host
 | 
					
						
							|  |  |  |     USER:
 | 
					
						
							|  |  |  |       from_secret: user
 | 
					
						
							|  |  |  |     SSH_KEY:
 | 
					
						
							|  |  |  |       from_secret: ssh_key
 | 
					
						
							|  |  |  |   when:
 | 
					
						
							|  |  |  |     branch:
 | 
					
						
							|  |  |  |     - drone
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   commands:
 | 
					
						
							| 
									
										
										
										
											2022-09-27 22:08:23 +01:00
										 |  |  |     # install deps
 | 
					
						
							| 
									
										
										
										
											2022-09-27 21:28:59 +01:00
										 |  |  |     - pacman -Sy --noconfirm > /dev/null
 | 
					
						
							| 
									
										
										
										
											2022-09-27 22:13:58 +01:00
										 |  |  |     - pacman -S --noconfirm openssh rsync > /dev/null
 | 
					
						
							| 
									
										
										
										
											2022-09-27 08:32:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     #  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
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # run operations on remote host
 | 
					
						
							| 
									
										
										
										
											2022-09-27 22:24:16 +01:00
										 |  |  |     - ssh "$${USER}@$${HOST}" "neofetch"
 | 
					
						
							|  |  |  |       #- ssh 
 | 
					
						
							|  |  |  |       #- ssh "$${USER}@$${HOST}" "[[ ! -d ~/gemini/content ]] || rm -r ~/gemini/content"
 | 
					
						
							|  |  |  |       #- rsync -rP content "$${USER}@$${HOST}:gemini"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-27 08:32:11 +01:00
										 |  |  | 
 |