This commit is contained in:
parent
87e6ff99f6
commit
c80b01d3e2
59
.drone.yml
59
.drone.yml
@ -2,40 +2,69 @@ kind: pipeline
|
|||||||
type: docker
|
type: docker
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
clone:
|
|
||||||
disable: true
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: clone
|
|
||||||
image: alpine/git
|
|
||||||
commands:
|
|
||||||
- git clone https://gitea.watsonlabs.net/watsonb8/homebridge-flux.git .
|
|
||||||
- git checkout $DRONE_COMMIT
|
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
- npm run build
|
- npm run build
|
||||||
|
|
||||||
- name: publish
|
- 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
|
||||||
|
branch:
|
||||||
|
include:
|
||||||
|
- master
|
||||||
|
|
||||||
|
- name: publish pre
|
||||||
|
image: plugins/npm
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: npm_username
|
||||||
|
password:
|
||||||
|
from_secret: npm_password
|
||||||
|
email: b.watson@watsonlabs.net
|
||||||
|
registry: "http://10.44.1.6:4873/"
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
exclude:
|
||||||
|
- tag
|
||||||
|
- pull_request
|
||||||
|
branch:
|
||||||
|
include:
|
||||||
|
- master
|
||||||
|
|
||||||
|
- name: publish tagged version
|
||||||
image: plugins/npm
|
image: plugins/npm
|
||||||
settings:
|
settings:
|
||||||
username: admin
|
username: admin
|
||||||
password:
|
password:
|
||||||
from_secret: npm_password
|
from_secret: npm_password
|
||||||
email: brandon@watsonlabs.net
|
email: b.watson@watsonlabs.net
|
||||||
registry: "http://linuxhost.me:4873/"
|
registry: "http://10.44.1.6:4873/"
|
||||||
when:
|
when:
|
||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
exclude:
|
||||||
|
- pull_request
|
||||||
|
|
||||||
notify:
|
- name: Notify
|
||||||
image: drillster/drone-email
|
image: drillster/drone-email
|
||||||
host: smtp.watsonlabs.net
|
settings:
|
||||||
|
host: 10.44.1.13
|
||||||
username: srvGitea
|
username: srvGitea
|
||||||
password:
|
password:
|
||||||
from_secret: smtp_password
|
from_secret: smtp_password
|
||||||
from: drone@watsonlabs.net
|
from: drone@watsonlabs.net
|
||||||
|
skip_verify: true
|
||||||
when:
|
when:
|
||||||
status: [failure]
|
status:
|
||||||
|
- failure
|
||||||
|
Loading…
Reference in New Issue
Block a user