You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
398 B
26 lines
398 B
kind: pipeline
|
|
name: Scripted_Pipeline
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: start
|
|
image: node
|
|
commands:
|
|
- npm install
|
|
|
|
- name: deploy
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
port: 22
|
|
host: sancy.iut.uca.fr
|
|
username: lafourcade
|
|
target: public_html/Scripted
|
|
source: WEB/*
|
|
key:
|
|
from_secret: DEPLOY_KEY
|
|
secrets:
|
|
- source: DEPLOY_KEY
|
|
rm: false |