service-gotosocial/.drone.yml

102 lines
2.5 KiB
YAML
Raw Permalink Normal View History

2023-01-16 10:23:36 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: debug
image: alpine
commands:
2023-01-16 11:01:10 +00:00
- 'echo "Repository: glenux/service-gotosocial"'
2023-01-16 10:23:36 +00: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 11:01:10 +00:00
DOCKER_REPO: glenux/service-gotosocial
2023-01-16 10:23:36 +00:00
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
2023-01-16 11:01:10 +00:00
cache_from: "glenux/service-gotosocial:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-gotosocial
2023-01-16 10:23:36 +00:00
tags: "${DRONE_COMMIT_SHA:0:8}"
purge: false
- name: publish:commit_branch
image: plugins/docker
# volumes:
# - name: cache
# path: /stupid
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
2023-01-16 11:01:10 +00:00
cache_from: "glenux/service-gotosocial:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-gotosocial
2023-01-16 10:23:36 +00:00
tags: "latest_${DRONE_BRANCH/\\//-}"
purge: false
when:
branch:
- "master"
- "develop"
- "feature/*"
- name: publish:latest
image: plugins/docker
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
2023-01-16 11:01:10 +00:00
cache_from: "glenux/service-gotosocial:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-gotosocial
2023-01-16 10:23:36 +00:00
tags: latest
purge: false
when:
branch:
- master
2023-02-21 12:50:14 +00: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:
- echo $SSH_USER
- echo $SSH_HOST
- 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
2023-02-21 13:24:02 +00:00
- ssh -o StrictHostKeyChecking=no
-i ~/.ssh/deploy_key
"$SSH_USER@$SSH_HOST"
2023-02-21 12:50:14 +00:00
ps:stop social
2023-02-21 13:24:02 +00:00
- ssh -o StrictHostKeyChecking=no
-i ~/.ssh/deploy_key
"$SSH_USER@$SSH_HOST"
git:from-image social
2023-02-21 13:14:38 +00:00
"glenux/service-gotosocial:${DRONE_COMMIT_SHA:0:8}"
2023-02-21 13:24:02 +00:00
#
2023-02-21 13:14:38 +00:00
- echo "SUCCESS"
2023-02-21 12:50:14 +00:00
2023-01-16 10:23:36 +00:00
# volumes:
# - name: cache
# temp: {}
#