File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/command-helpers/build Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " messari-subgraph-cli" ,
3
- "version" : " 0.2.1 " ,
3
+ "version" : " 0.2.2 " ,
4
4
"description" : " A CLI for Messari Subgraph development." ,
5
5
"types" : " build/types/types.d.ts" ,
6
6
"bin" : {
Original file line number Diff line number Diff line change @@ -290,13 +290,13 @@ export class ScriptGenerator {
290
290
break
291
291
case 'hosted-service' :
292
292
if ( this . token ) {
293
- deploymentScript = `graph deploy --auth =${ this . token } --product hosted-service ${ location } `
293
+ deploymentScript = `graph deploy --deploy-key =${ this . token } --product hosted-service ${ location } `
294
294
} else {
295
295
deploymentScript = `graph deploy --product hosted-service ${ location } `
296
296
}
297
297
break
298
298
case 'cronos-portal' :
299
- deploymentScript = `graph deploy ${ location } --access-token =${ this . token } --node https://portal-api.cronoslabs.com/deploy --ipfs https://api.thegraph.com/ipfs --versionLabel=${ version } `
299
+ deploymentScript = `graph deploy ${ location } --deploy-key =${ this . token } --node https://portal-api.cronoslabs.com/deploy --ipfs https://api.thegraph.com/ipfs --versionLabel=${ version } `
300
300
break
301
301
default :
302
302
throw new Error (
You can’t perform that action at this time.
0 commit comments