File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,31 @@ defaults:
1515 shell : bash
1616
1717jobs :
18+ deploy_doc_site :
19+ runs-on : ubuntu-latest-4core
20+ steps :
21+ - name : Initialize environment
22+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@359350bbc10aab1bac85d0eec61a53377078ab82
23+ with :
24+ cache-node-modules : true
25+ - name : Setup Bazel
26+ uses : angular/dev-infra/github-actions/bazel/setup@359350bbc10aab1bac85d0eec61a53377078ab82
27+ - name : Setup Bazel RBE
28+ uses : angular/dev-infra/github-actions/bazel/configure-remote@359350bbc10aab1bac85d0eec61a53377078ab82
29+ - name : Install node modules
30+ run : yarn install --frozen-lockfile
31+ - name : Build and Verify Release Output
32+ run : yarn build-and-check-release-output
33+ - name : Verify tooling setup
34+ run : yarn check-tooling-setup
35+ - name : Deploy the docs app
36+ run : yarn ci-push-deploy-docs-app
37+ env :
38+ CIRCLE_BRANCH : main
39+ CIRCLE_SHA1 : ${{ github.sha }}
40+ DOCS_SITE_GCP_SERVICE_KEY : ' <unset>'
41+ DOCS_DEPLOY_GITHUB_TOKEN : ' '
42+
1843 lint :
1944 runs-on : ubuntu-latest
2045 steps :
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export async function buildAndDeployWithSnapshots(
7171
7272 // Deploy all targets to Firebase.
7373 for ( const target of targets ) {
74- await deployToSite ( docsRepoDir , firebaseServiceKey , target ) ;
74+ // await deployToSite(docsRepoDir, firebaseServiceKey, target);
7575 }
7676
7777 // Run post monitoring tests for production deployments.
You can’t perform that action at this time.
0 commit comments