42 lines
947 B
YAML
42 lines
947 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: martial-admin-mini
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
- master
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:16-alpine
|
|
environment:
|
|
NODE_OPTIONS: --max-old-space-size=4096
|
|
commands:
|
|
- npm install --legacy-peer-deps
|
|
- npm run build:h5
|
|
- ls -la dist/dev/h5/
|
|
|
|
- name: deploy
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host: 154.30.6.21
|
|
username: root
|
|
key:
|
|
from_secret: ssh_key
|
|
source: dist/dev/h5/*
|
|
target: /var/www/martial-admin-mini
|
|
strip_components: 3
|
|
|
|
- name: restart
|
|
image: appleboy/drone-ssh
|
|
settings:
|
|
host: 154.30.6.21
|
|
username: root
|
|
key:
|
|
from_secret: ssh_key
|
|
script:
|
|
- docker stop martial-admin-mini || true
|
|
- docker rm martial-admin-mini || true
|
|
- docker run -d --name martial-admin-mini -p 8082:80 -v /var/www/martial-admin-mini:/usr/share/nginx/html:ro nginx:alpine
|