File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1-
21//hosting url
32export const HOST = 'https://bellecour.iex.ec' ;
43
@@ -16,7 +15,6 @@ export const APP_TAG = ['tee', 'scone'];
1615export const WEB3_MAIL_ENS_NAME_DEV = 'web3mail-dev.apps.iexec.eth' ;
1716export const WEB3_MAIL_ENS_NAME_PROD = 'web3mail.apps.iexec.eth' ;
1817
19-
2018export const DOCKER_IMAGE_NAMESPACE = 'iexechub' ;
2119export const DOCKER_IMAGE_REPOSITORY = 'web3mail-dapp' ;
2220
Original file line number Diff line number Diff line change @@ -39,12 +39,15 @@ const main = async () => {
3939
4040 const iexec = getIExec ( privateKey ) ;
4141
42- const dockerImageTag = deployEnvironment === GITHUB_DEPLOY_TO_DEV
43- ? DOCKER_IMAGE_DEV_TAG
44- : DOCKER_IMAGE_PROD_TAG ;
42+ const dockerImageTag =
43+ deployEnvironment === GITHUB_DEPLOY_TO_DEV
44+ ? DOCKER_IMAGE_DEV_TAG
45+ : DOCKER_IMAGE_PROD_TAG ;
4546
4647 if ( ! dockerImageTag ) {
47- throw Error ( `Missing docker image tag for environment ${ deployEnvironment } ` ) ;
48+ throw Error (
49+ `Missing docker image tag for environment ${ deployEnvironment } `
50+ ) ;
4851 }
4952
5053 //deploy app
You can’t perform that action at this time.
0 commit comments