Drone: Upgrade build pipeline tool (#27949)

* Drone: Don't use npx

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>

* Drone: Upgrade build pipeline tool

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
Arve Knudsen
2020-10-01 10:00:11 +02:00
committed by GitHub
parent fa2781391a
commit 298ac20dc5
6 changed files with 14 additions and 14 deletions

View File

@@ -3,7 +3,7 @@ publish_image = 'grafana/grafana-ci-deploy:1.2.6'
grafana_docker_image = 'grafana/drone-grafana-docker:0.3.2'
alpine_image = 'alpine:3.12'
windows_image = 'mcr.microsoft.com/windows:1809'
grabpl_version = '0.5.14'
grabpl_version = '0.5.15'
git_image = 'alpine/git:v2.26.2'
dockerize_version = '0.6.1'
wix_image = 'grafana/ci-wix:0.1.1'
@@ -558,7 +558,7 @@ def frontend_metrics_step(edition):
return None
return {
'name': 'frontend-metrics',
'name': 'publish-frontend-metrics',
'image': build_image,
'depends_on': [
'initialize',
@@ -812,7 +812,7 @@ def release_next_npm_packages_step(edition):
},
},
'commands': [
'npx lerna bootstrap',
'./node_modules/.bin/lerna bootstrap',
'echo "//registry.npmjs.org/:_authToken=$${NPM_TOKEN}" >> ~/.npmrc',
'./scripts/circle-release-next-packages.sh',
],