This commit is contained in:
mike12345567 2020-10-21 15:29:13 +01:00
parent 012b290895
commit 93d7707168
1 changed files with 17 additions and 11 deletions

View File

@ -18,18 +18,24 @@ async function run() {
profile = BASE_PROFILE profile = BASE_PROFILE
} }
// basic manifest file describing the latest // basic manifest file describing the latest
fs.writeFileSync(MANIFEST, JSON.stringify({ fs.writeFileSync(
MANIFEST,
JSON.stringify({
version: packageJson.version, version: packageJson.version,
dir: S3_COMP_DIR, dir: S3_COMP_DIR,
})) })
)
execSync(`aws s3 sync ${TO_SYNC} ${buildS3Path()} --profile ${profile}`) execSync(`aws s3 sync ${TO_SYNC} ${buildS3Path()} --profile ${profile}`)
execSync(`aws s3 cp ${MANIFEST} ${BUCKET_LOCATION}/${MANIFEST} --profile ${profile}`) execSync(
`aws s3 cp ${MANIFEST} ${BUCKET_LOCATION}/${MANIFEST} --profile ${profile}`
)
fs.unlinkSync(MANIFEST) fs.unlinkSync(MANIFEST)
} }
run().then(() => { run()
.then(() => {
console.log(`Deployment complete, version ${packageJson.version}`) console.log(`Deployment complete, version ${packageJson.version}`)
}).catch((err) => { })
.catch(err => {
console.error(err) console.error(err)
}) })