2024-09-02 09:17:32 +03:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: docker-build-and-push
|
|
|
|
|
2024-09-04 23:30:06 +03:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2024-09-02 09:17:32 +03:00
|
|
|
trigger:
|
|
|
|
branch:
|
2024-09-02 21:35:52 +03:00
|
|
|
- master
|
2024-09-02 09:17:32 +03:00
|
|
|
|
2024-09-02 21:38:16 +03:00
|
|
|
image_pull_secrets:
|
|
|
|
- DOCKER_AUTH
|
|
|
|
|
2024-09-02 09:17:32 +03:00
|
|
|
steps:
|
2024-09-02 21:35:14 +03:00
|
|
|
- name: build site
|
2024-09-02 09:17:32 +03:00
|
|
|
# https://hub.docker.com/r/library/docker
|
2024-09-04 22:10:01 +03:00
|
|
|
pull: always
|
2024-09-03 12:18:07 +03:00
|
|
|
image: docker.struchkov.dev/quartz:develop
|
2024-09-02 09:17:32 +03:00
|
|
|
commands:
|
2024-09-05 03:05:17 +03:00
|
|
|
- git clone https://git.struchkov.dev/upagge/digital-garden.git /usr/src/app/content
|
|
|
|
- cd /usr/src/app
|
2024-09-07 11:57:48 +03:00
|
|
|
- cp ./content/.quartz/quartz.config.ts .
|
|
|
|
- cp ./content/.quartz/quartz.layout.ts .
|
2024-09-03 12:39:27 +03:00
|
|
|
- npx quartz build
|
2024-09-09 07:14:58 +03:00
|
|
|
- mv public /drone/src/public/ru
|
|
|
|
- cp ./content/.quartz/robots.txt /drone/src/public
|
2024-09-02 21:35:14 +03:00
|
|
|
- name: publish to server
|
2024-09-02 21:43:05 +03:00
|
|
|
image: private.docker.struchkov.dev/mkdocs:latest
|
2024-09-02 21:35:14 +03:00
|
|
|
environment:
|
|
|
|
SSH_DEPLOY_KEY:
|
|
|
|
from_secret: SSH_DEPLOY_KEY
|
|
|
|
SSH_DEPLOY_HOST:
|
|
|
|
from_secret: SSH_DEPLOY_HOST
|
|
|
|
SSH_DEPLOY_PORT:
|
|
|
|
from_secret: SSH_DEPLOY_PORT
|
|
|
|
SSH_DEPLOY_PATH:
|
|
|
|
from_secret: SSH_DEPLOY_PATH
|
|
|
|
SSH_DEPLOY_USER:
|
|
|
|
from_secret: SSH_DEPLOY_USER
|
|
|
|
commands:
|
|
|
|
- eval $(ssh-agent -s)
|
|
|
|
- mkdir -p ~/.ssh
|
|
|
|
- echo "$SSH_DEPLOY_KEY" >> ~/.ssh/id_rsa
|
|
|
|
- chmod 700 ~/.ssh
|
|
|
|
- chmod 600 ~/.ssh/id_rsa
|
|
|
|
- ssh-keyscan -p $SSH_DEPLOY_PORT $SSH_DEPLOY_HOST >> ~/.ssh/known_hosts
|
|
|
|
- chmod 644 ~/.ssh/known_hosts
|
2024-09-03 08:14:41 +03:00
|
|
|
- ssh -p $SSH_DEPLOY_PORT $SSH_DEPLOY_USER@$SSH_DEPLOY_HOST "rm -rf $SSH_DEPLOY_PATH/*"
|
|
|
|
- scp -r -P $SSH_DEPLOY_PORT ./public/* $SSH_DEPLOY_USER@$SSH_DEPLOY_HOST:$SSH_DEPLOY_PATH
|
2024-09-02 21:35:14 +03:00
|
|
|
|
2024-09-02 09:17:32 +03:00
|
|
|
|
2024-09-02 21:35:14 +03:00
|
|
|
# drone sign --save upagge/digital-garden
|
2024-09-02 09:17:32 +03:00
|
|
|
---
|
|
|
|
kind: signature
|
2024-09-09 07:14:58 +03:00
|
|
|
hmac: 3f39aadf5b3020e720a9e7b5928ae347229bf234992b1046ff63ce27221490ff
|
2024-09-02 09:17:32 +03:00
|
|
|
|
2024-09-02 21:35:14 +03:00
|
|
|
...
|