2022-05-23 22:21:41 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
|
2023-01-24 15:59:41 +00:00
|
|
|
name: Build and Deploy
|
2022-05-23 22:21:41 +00:00
|
|
|
steps:
|
|
|
|
- name: build
|
2023-01-16 15:23:18 +00:00
|
|
|
image: klakegg/hugo:ext-alpine-ci
|
2022-07-05 12:51:22 +00:00
|
|
|
environment:
|
|
|
|
HUGO_SECURITY_HTTP_URLS: none
|
2022-05-23 22:21:41 +00:00
|
|
|
commands:
|
2022-11-20 18:40:15 +00:00
|
|
|
- apk add --no-cache git py3-pygments
|
2022-06-14 12:33:51 +00:00
|
|
|
- git submodule update --init --single-branch --depth=1
|
2022-07-05 12:51:22 +00:00
|
|
|
- hugo
|
2022-05-23 22:21:41 +00:00
|
|
|
|
|
|
|
- name: deploy
|
|
|
|
image: alpine/git:latest
|
|
|
|
environment:
|
|
|
|
SSH_KEY:
|
|
|
|
from_secret: ssh_key
|
|
|
|
commands:
|
2022-05-23 22:44:10 +00:00
|
|
|
- mkdir ~/.ssh
|
|
|
|
- echo "$${SSH_KEY}" > ~/.ssh/id_ed25519
|
|
|
|
- chmod 600 ~/.ssh/id_ed25519
|
2023-01-13 23:18:57 +00:00
|
|
|
- ssh -o "StrictHostKeyChecking no"
|
2023-03-14 18:15:56 +00:00
|
|
|
cicd@cpx.servers.sapti.me "rm -rf /opt/docker/nginx/website/public/*"
|
2023-01-13 23:18:57 +00:00
|
|
|
- scp -o "StrictHostKeyChecking no" -r
|
2023-03-14 18:15:56 +00:00
|
|
|
./public cicd@cpx.servers.sapti.me:/opt/docker/nginx/website
|
2022-05-23 22:53:10 +00:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|