docs/.drone.yml

92 Zeilen
1,7 KiB
YAML

2023-09-09 17:15:53 +02:00
name: test
kind: pipeline
type: docker
2023-09-09 17:25:11 +02:00
clone:
disable: true
2023-09-09 17:15:53 +02:00
platform:
os: linux
arch: amd64
steps:
2023-09-09 17:25:11 +02:00
- name: clone
image: registry.access.redhat.com/ubi9/nodejs-18:1-62.1692771036
volumes:
- name: cache
path: /opt/app-root/src
2023-09-09 17:25:11 +02:00
commands:
- mkdir ~/docs && cd ~/docs
- git clone $DRONE_REPO_LINK .
- git checkout $DRONE_COMMIT
2023-09-09 17:15:53 +02:00
- name: build
image: registry.access.redhat.com/ubi9/nodejs-18:1-62.1692771036
volumes:
- name: cache
path: /opt/app-root/src
2023-09-09 17:15:53 +02:00
commands:
2023-09-09 17:26:34 +02:00
- cd ~/docs
2023-09-09 17:15:53 +02:00
- npm install --only=production
- npm run build
trigger:
event:
- push
- pull_request
volumes:
2023-09-09 18:22:34 +02:00
- name: cache
temp: {}
---
name: deploy to production
kind: pipeline
type: docker
platform:
os: linux
arch: amd64
clone:
disable: true
steps:
- name: clone
image: registry.access.redhat.com/ubi9/nodejs-18:1-62.1692771036
volumes:
- name: cache
path: /opt/app-root/src
commands:
- mkdir ~/docs && cd ~/docs
- git clone $DRONE_REPO_LINK .
- git checkout $DRONE_COMMIT
- name: build
image: registry.access.redhat.com/ubi9/nodejs-18:1-62.1692771036
volumes:
- name: cache
path: /opt/app-root/src
commands:
- cd ~/docs
- npm install --only=production
- npm run build
- name: deploy to production
image: docker.io/appleboy/drone-scp:1.6.14
2023-09-09 18:22:34 +02:00
volumes:
- name: cache
path: /opt/app-root/src
settings:
host: be.nick-slowinski.de
username: drone_nick-slowinski_de-docs
key:
from_secret: ssh_private_key-drone_nick-slowinski_de-docs
target: /var/www/nick-slowinski.de/docs
source: /opt/app-root/src/docs/build
rm: true
overwrite: true
strip_components: 5
trigger:
event:
- promote
target:
- production
volumes:
- name: cache
temp: {}