2021-05-31 23:15:28 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
2021-05-31 23:36:50 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-01-07 21:16:15 +00:00
|
|
|
node:
|
|
|
|
lan: internal
|
|
|
|
|
2021-05-31 23:15:28 +00:00
|
|
|
steps:
|
2021-05-31 23:32:06 +00:00
|
|
|
- name: clone
|
|
|
|
image: alpine/git
|
|
|
|
commands:
|
2021-05-31 23:32:58 +00:00
|
|
|
- git clone https://gitea.watsonlabs.net/watsonb8/homebridge-harmony-control.git .
|
2021-05-31 23:32:06 +00:00
|
|
|
- git checkout $DRONE_COMMIT
|
|
|
|
|
2021-05-31 23:15:28 +00:00
|
|
|
- name: build
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- npm install
|
|
|
|
- npm run build
|
2021-06-03 00:54:21 +00:00
|
|
|
|
2021-06-08 00:46:30 +00:00
|
|
|
- name: version
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- export version=`node -p "require('./package.json').version"`
|
|
|
|
- export commit=`echo $DRONE_COMMIT | cut -c1-5`
|
|
|
|
- npm version prerelease --preid=$commit --git-tag-version=false --allow-same-version=true
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
|
|
|
- pull_request
|
2021-06-08 00:49:45 +00:00
|
|
|
branch:
|
2021-06-08 00:46:30 +00:00
|
|
|
include:
|
|
|
|
- master
|
|
|
|
|
|
|
|
- name: publish pre
|
2022-09-06 14:04:46 +00:00
|
|
|
image: plugins/npm:1.0.0
|
2021-06-08 00:46:30 +00:00
|
|
|
settings:
|
2021-12-22 05:29:44 +00:00
|
|
|
username:
|
|
|
|
from_secret: npm_username
|
2021-06-08 00:46:30 +00:00
|
|
|
password:
|
|
|
|
from_secret: npm_password
|
|
|
|
email: brandon@watsonlabs.net
|
2021-12-22 20:41:50 +00:00
|
|
|
registry: "http://10.44.1.6:4873/"
|
2021-06-08 00:46:30 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
|
|
|
- pull_request
|
2021-06-08 00:49:45 +00:00
|
|
|
branch:
|
2021-06-08 00:46:30 +00:00
|
|
|
include:
|
|
|
|
- master
|
|
|
|
|
|
|
|
- name: publish tagged version
|
2022-09-06 14:04:46 +00:00
|
|
|
image: plugins/npm:1.0.0
|
2021-06-03 01:14:12 +00:00
|
|
|
settings:
|
2021-12-29 01:22:18 +00:00
|
|
|
username:
|
|
|
|
from_secret: npm_username
|
2021-06-03 01:14:12 +00:00
|
|
|
password:
|
|
|
|
from_secret: npm_password
|
|
|
|
email: brandon@watsonlabs.net
|
2021-12-22 20:41:50 +00:00
|
|
|
registry: "http://10.44.1.6:4873/"
|
2021-06-03 00:54:21 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- tag
|
2021-06-08 00:46:30 +00:00
|
|
|
exclude:
|
|
|
|
- pull_request
|
2022-01-07 21:48:45 +00:00
|
|
|
|
|
|
|
- name: remove old package
|
|
|
|
image: appleboy/drone-ssh
|
|
|
|
environment:
|
|
|
|
SSH_USER:
|
|
|
|
from_secret: ssh_user
|
|
|
|
settings:
|
|
|
|
host: homebridge.me
|
|
|
|
envs:
|
|
|
|
- SSH_USER
|
|
|
|
username:
|
|
|
|
from_secret: ssh_user
|
|
|
|
key:
|
|
|
|
from_secret: ssh_key
|
|
|
|
port: 22
|
|
|
|
script:
|
|
|
|
- rm -r /home/$SSH_USER/.npm-global/lib/node_modules/@watsonb8/homebridge-harmony-control
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
2021-06-03 01:20:09 +00:00
|
|
|
|
2022-01-07 21:16:15 +00:00
|
|
|
- name: deploy
|
|
|
|
image: appleboy/drone-ssh
|
|
|
|
settings:
|
|
|
|
host: homebridge.me
|
|
|
|
username:
|
|
|
|
from_secret: ssh_user
|
|
|
|
key:
|
|
|
|
from_secret: ssh_key
|
|
|
|
port: 22
|
|
|
|
script:
|
2022-01-07 21:22:38 +00:00
|
|
|
- npm install -g @watsonb8/homebridge-harmony-control --registry http://10.44.1.6:4873
|
2022-01-07 21:16:15 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2022-01-07 21:38:49 +00:00
|
|
|
- name: restart homebridge
|
|
|
|
image: appleboy/drone-ssh
|
|
|
|
settings:
|
|
|
|
host: homebridge.me
|
|
|
|
username:
|
|
|
|
from_secret: elevated_ssh_user
|
|
|
|
key:
|
|
|
|
from_secret: ssh_key
|
|
|
|
port: 22
|
|
|
|
script:
|
|
|
|
- systemctl restart homebridge
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2021-12-22 05:24:18 +00:00
|
|
|
- name: Notify
|
|
|
|
image: drillster/drone-email
|
|
|
|
settings:
|
|
|
|
host: 10.44.1.13
|
|
|
|
username: srvGitea
|
|
|
|
password:
|
|
|
|
from_secret: smtp_password
|
|
|
|
from: drone@watsonlabs.net
|
|
|
|
skip_verify: true
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- failure
|