Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thegeeklab/hugo-geekdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kaussow <mail@geeklabor.de>2021-01-06 20:10:56 +0300
committerRobert Kaussow <mail@geeklabor.de>2021-01-06 20:10:56 +0300
commita042543cdfc9035eba68eab32b181c3e346abd27 (patch)
treefb4037d27af0329ef742f34497a179039028550d /.drone.yml
parent7bf54dd48aa4ac8758ffbea55d513da754307bd6 (diff)
remove global gulp installation in ci
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml12
1 files changed, 5 insertions, 7 deletions
diff --git a/.drone.yml b/.drone.yml
index 43ad51f..0033a13 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -10,9 +10,8 @@ steps:
- name: assets
image: node:lts
commands:
- - npm install -g gulp
- - npm install
- - gulp default
+ - npm install > /dev/null
+ - npx gulp default
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
@@ -93,9 +92,8 @@ steps:
- name: assets
image: node:lts
commands:
- - npm install -g gulp
- - npm install
- - gulp default
+ - npm install > /dev/null
+ - npx gulp default
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
@@ -254,6 +252,6 @@ depends_on:
---
kind: signature
-hmac: 20af3b31e76916be77171ae6826ca58e084408f7ae5ee98580fc05c990f1d72f
+hmac: 269238f5dbb14787cedd2cc1233cad4b5dcffdeec93d70c688e2a6ed28e7556e
...