Skip to content

Commit

Permalink
Update skill manifest in any deploy environment (#413)
Browse files Browse the repository at this point in the history
Signed-off-by: jsetton <jeremy.setton@gmail.com>
  • Loading branch information
jsetton authored Nov 17, 2021
1 parent f680e97 commit d0e1d52
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/scripts/generateDeployConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,10 @@ if (require.main === module) {
createAskCliStates();
// Update ask-cli resources
updateAskCliResources();
// Update skill config for live deployment
if (process.env.DEPLOY_ENV === 'live') {
// Update skill infrastructure template
updateSkillInfraTemplate();
// Update skill manifest
updateSkillManifest();
}
// Update skill manifest
updateSkillManifest();
// Update skill infrastructure template for live deployment
if (process.env.DEPLOY_ENV === 'live') updateSkillInfraTemplate();
} catch (error) {
console.log(error.message);
process.exit(1);
Expand Down

0 comments on commit d0e1d52

Please sign in to comment.