This commit is contained in:
20
.drone.yml
Normal file
20
.drone.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: bindableProperty
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: node
|
||||
commands:
|
||||
- npm ci
|
||||
- npm run build:prod
|
||||
|
||||
- name: publish
|
||||
image: plugins/npm
|
||||
settings:
|
||||
username:
|
||||
from_secret: username
|
||||
password:
|
||||
from_secret: password
|
||||
email: kovacsadam07@outlook.hu
|
||||
@@ -21,4 +21,4 @@ gulp.task('clean', function () {
|
||||
});
|
||||
|
||||
gulp.task('build', builder(false));
|
||||
gulp.task('build:production', builder(true));
|
||||
gulp.task('build:prod', builder(true));
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"build": "gulp build",
|
||||
"build:prod": "gulp build:prod",
|
||||
"clean": "gulp clean"
|
||||
},
|
||||
"keywords": [],
|
||||
|
||||
Reference in New Issue
Block a user