summaryrefslogtreecommitdiff
path: root/.gcp/cd.yaml
diff options
context:
space:
mode:
authorBrandon Keiji <[email protected]>2025-04-25 00:40:23 +0000
committerGitHub <[email protected]>2025-04-24 17:40:23 -0700
commit7ea3dff49c367acbeddbea2184d6981b5b2c45bd (patch)
treef04644bc02283c87fd85052158a856af8e0e91a9 /.gcp/cd.yaml
parent8cf3e1611e649d47d53308b9d6acd650a59ee61d (diff)
refactor: change default logs bucket for cloudbuild cicd (#161)
Diffstat (limited to '.gcp/cd.yaml')
-rw-r--r--.gcp/cd.yaml24
1 files changed, 0 insertions, 24 deletions
diff --git a/.gcp/cd.yaml b/.gcp/cd.yaml
deleted file mode 100644
index f3154efb..00000000
--- a/.gcp/cd.yaml
+++ /dev/null
@@ -1,24 +0,0 @@
-steps:
- # Install dependencies
- - name: 'gcr.io/cloud-builders/npm'
- args: ['install']
-
- # Run prerelease versioning script across workspaces with dynamic version
- - name: 'gcr.io/cloud-builders/npm'
- entrypoint: 'bash'
- args:
- - '-c'
- - |
- npm run prerelease:version --workspaces -- --suffix="$(date +%Y%m%d)-$_SHORT_SHA.$_BUILD_ID"
-
- # Run prerelease dependency script across workspaces
- - name: 'gcr.io/cloud-builders/npm'
- args: ['run', 'prerelease:deps', '--workspaces']
-
- # Authenticate with our registry
- - name: gcr.io/cloud-builders/npm
- args: ['run', 'artifactregistry-login']
-
- # Publish packages from workspaces with 'dogfood' tag
- - name: 'gcr.io/cloud-builders/npm'
- args: ['publish', '--tag=head', '--workspaces']