We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93d427e commit fc5efb2Copy full SHA for fc5efb2
docs/pages/product/deployment/cloud/continuous-deployment.mdx
@@ -101,10 +101,12 @@ jobs:
101
steps:
102
- name: Checkout
103
uses: actions/checkout@v2
104
- - name: Use Node.js 14.x
+ - name: Use Node.js 20.x
105
uses: actions/setup-node@v1
106
with:
107
- node-version: 14.x
+ node-version: 20.x
108
+ - name: Install Cube backend server core
109
+ run: npm i @cubejs-backend/server-core
110
- name: Deploy to Cube Cloud
111
run: npx cubejs-cli deploy --token ${{ secrets.CUBE_CLOUD_DEPLOY_AUTH }}
112
```
0 commit comments