@gapi/gcli 1.8.137 → 1.8.138
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
- package/release/index.js +61711 -63939
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ npm i -g @gapi/gcli
|
|
|
17
17
|
### Login
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
gcli login --token 'GRAPHQL_TOKEN' --key 'GOOGLE_API_KEY' --url 'URL' --uploadUrl 'UPLOAD_URL
|
|
20
|
+
gcli login --token 'GRAPHQL_TOKEN' --key 'GOOGLE_API_KEY' --url 'URL' --uploadUrl 'UPLOAD_URL'
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
### List Projects
|
|
@@ -123,8 +123,8 @@ gcli lambda:test --queryParams '?test=1&proba=1&dada=5' --pathParams 'proba=5;te
|
|
|
123
123
|
|
|
124
124
|
#### Default long lived token for CI/CD using github actions
|
|
125
125
|
|
|
126
|
-
Can be set using
|
|
126
|
+
Can be set using secret variable called `GCLI_AUTH_TOKEN`
|
|
127
127
|
|
|
128
128
|
```
|
|
129
|
-
|
|
129
|
+
npx gcli login --ci --token ${{ secrets.GCLI_AUTH_TOKEN }} --key '' --url '' --uploadUrl ''
|
|
130
130
|
```
|