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

Remove npm steps from enterprise pipelines
This commit is contained in:
Dimitris Sotirakis 2022-11-24 14:12:07 +02:00 committed by GitHub
parent be73418d00
commit 2d7fcea8fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 15 deletions

View File

@ -2868,17 +2868,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.4
name: store-npm-packages
- commands:
- ./bin/build upload-packages --edition enterprise2
depends_on:
@ -6317,6 +6306,6 @@ kind: secret
name: packages_secret_access_key
---
kind: signature
hmac: 1eca02a75c7e67666e8be67a9f121b9a70f5c280ee4d231a647be9d696e267dc
hmac: e7746a4b35fba9e1a7cb3096b947a874786b082f41e4252448ac6acde7ee3ccf
...

View File

@ -300,11 +300,8 @@ def enterprise_pipelines(ver_mode=ver_mode, trigger=release_trigger):
])
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: