service-gotosocial/.drone.yml

72 lines
1.9 KiB
YAML
Raw Normal View History

2023-01-16 11:23:36 +01:00
---
kind: pipeline
type: docker
name: default
steps:
- name: debug
image: alpine
commands:
2023-01-16 12:01:10 +01:00
- 'echo "Repository: glenux/service-gotosocial"'
2023-01-16 11:23:36 +01:00
- 'echo "Git commit: ${DRONE_COMMIT_SHA:0:8}"'
- name: publish:commit_sha
image: plugins/docker
# pull: never
# volumes:
# - name: cache
# path: /stupid
environment:
2023-01-16 12:01:10 +01:00
DOCKER_REPO: glenux/service-gotosocial
2023-01-16 11:23:36 +01:00
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
2024-10-19 15:03:34 +02:00
cache_from: "glenux/service-gotosocial:${DRONE_BRANCH/\\//-}_latest"
2023-01-16 12:01:10 +01:00
repo: glenux/service-gotosocial
2024-10-19 15:03:34 +02:00
tags:
- "${DRONE_BRANCH/\\//-}_${DRONE_COMMIT_SHA:0:8}"
- "${DRONE_BRANCH/\\//-}_latest"
- "latest"
2023-01-16 11:23:36 +01:00
purge: false
2023-02-21 13:50:14 +01:00
- name: deploy:dokku
image: alpine
when:
branch:
- master
environment:
SSH_USER:
from_secret: SSH_USER
SSH_HOST:
from_secret: SSH_HOST
SSH_PRIVATE_KEY:
from_secret: SSH_PRIVATE_KEY
commands:
2025-03-17 14:37:19 +01:00
- export $SSH_TARGET="$SSH_USER@$SSH_HOST"
- set -x
- echo "$SSH_TARGET"
2025-03-17 18:12:00 +01:00
- echo $SSH_USER | wc -c
- echo $SSH_HOST | wc -c
2023-02-21 13:50:14 +01:00
- echo $SSH_PRIVATE_KEY
- apk update && apk add openssh-client
- mkdir -p ~/.ssh && chmod 700 ~/.ssh
- echo "$SSH_PRIVATE_KEY" | base64 -d > ~/.ssh/deploy_key
- chmod 600 ~/.ssh/deploy_key
2025-02-13 14:41:05 +01:00
- ssh-keygen -f ~/.ssh/deploy_key -y > ~/.ssh/deploy_key.pub
2025-02-13 15:02:01 +01:00
- "cat ~/.ssh/deploy_key.pub | cut -f3 -d' '"
2025-03-17 14:37:19 +01:00
- ssh -o StrictHostKeyChecking=no -i ~/.ssh/deploy_key $SSH_TARGET ps:stop social
2025-03-17 17:08:48 +01:00
- ssh -o StrictHostKeyChecking=no
-i ~/.ssh/deploy_key
2025-03-17 18:12:00 +01:00
$SSH_USER@$SSH_HOST
2025-03-17 17:08:48 +01:00
git:from-image social
"glenux/service-gotosocial:${DRONE_BRANCH/\\//-}_${DRONE_COMMIT_SHA:0:8}"
#
2023-02-21 14:14:38 +01:00
- echo "SUCCESS"
2023-02-21 13:50:14 +01:00
2023-01-16 11:23:36 +01:00
# volumes:
# - name: cache
# temp: {}
#