[v9.3.x] CI: Remove npm steps from enterprise pipelines (#59108) (#59289)

CI: Remove `npm` steps from enterprise pipelines (#59108)

Remove npm steps from enterprise pipelines

(cherry picked from commit 2d7fcea8fa)

# Conflicts:
#	.drone.yml
This commit is contained in:
Dimitris Sotirakis
2023-01-20 08:11:15 +00:00
committed by GitHub
parent 5a15fec112
commit f7352810e0
2 changed files with 1 additions and 15 deletions
+1 -12
View File
@@ -2838,17 +2838,6 @@ steps:
from_secret: prerelease_bucket
image: grafana/grafana-ci-deploy:1.3.3
name: upload-cdn-assets-enterprise2
- commands:
- ./bin/grabpl artifacts npm store --tag ${DRONE_TAG}
depends_on:
- build-frontend-packages
environment:
GCP_KEY:
from_secret: gcp_key
PRERELEASE_BUCKET:
from_secret: prerelease_bucket
image: grafana/build-container:1.6.6
name: store-npm-packages
- commands:
- ./bin/grabpl upload-packages --edition enterprise2
depends_on:
@@ -5636,6 +5625,6 @@ kind: secret
name: packages_secret_access_key
---
kind: signature
hmac: 7b6f6906fff47ab3bfcc9fde3c30428766c935d1a8b0d80fde012bec248b7951
hmac: 484a60c2bddc31ee390456bae87bf13d2cd1c3eef0b4b07460d84c0978b14340
...
-3
View File
@@ -290,11 +290,8 @@ def get_enterprise_pipelines(trigger, ver_mode):
])
if should_publish:
publish_step = store_storybook_step(edition=edition, ver_mode=ver_mode)
store_npm_step = store_npm_packages_step()
if publish_step:
publish_steps.append(publish_step)
if store_npm_step:
publish_steps.append(store_npm_step)
windows_package_steps = get_windows_steps(edition=edition, ver_mode=ver_mode)
if should_upload: