fix: CNAME file issue

CNAME file was located in ./static-assets, but it should be in the
`out` directory after the build stage because the `out` folder was
created in the `build` stage.
This commit is contained in:
swb 2023-03-21 18:19:58 +00:00
parent b1fd93d314
commit 8cca4cac28
No known key found for this signature in database
GPG Key ID: 00C65C3C5258DB0F
2 changed files with 7 additions and 8 deletions

14
Jenkinsfile vendored
View File

@ -19,11 +19,10 @@ pipeline {
CONTENT_SOURCE_URL = '../src'
GIT_COMMITTER_NAME = 'status-im-auto'
GIT_COMMITTER_EMAIL = 'auto@status.im'
/* dev page settings
* TODO: update DEV_SITE env var and uncomment it before the build */
DEV_SITE = 'dev.acid.info'
DEV_HOST = 'jenkins@node-01.do-ams3.sites.misc.statusim.net'
SCP_OPTS = 'StrictHostKeyChecking=no'
PROD_SITE = 'acid.info'
DEV_SITE = 'dev.acid.info'
DEV_HOST = 'jenkins@node-01.do-ams3.sites.misc.statusim.net'
SCP_OPTS = 'StrictHostKeyChecking=no'
}
stages {
@ -40,7 +39,7 @@ pipeline {
stage('Install') {
steps {
dir('builder') {
sh 'yarn install'
sh 'yarn install'
}
}
}
@ -48,7 +47,8 @@ pipeline {
stage('Build') {
steps {
dir('builder') {
sh 'yarn build'
sh 'yarn build'
sh "echo ${env.PROD_SITE} > out/CNAME"
}
}
}

View File

@ -1 +0,0 @@
acid.info