-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
INFRA-466: Create env file when only artifacts change a #46
INFRA-466: Create env file when only artifacts change a #46
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me at first glance.
If that works, then we're good.
@enyachoke could you reuse the logic from this function, instead of copying it?
|
…te artfacts for dockerComposeFromArtifact project type
ec01d36
to
7362116
Compare
@@ -220,7 +220,7 @@ module.exports = { | |||
return script; | |||
}, | |||
getArtifactsScript: function(instanceDef) { | |||
return ""; | |||
return this.getDeploymentScript(instanceDef); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return this.getDeploymentScript(instanceDef); | |
// `dockerComposeFromArtifact` deployment type requires to apply deployment scripts changes even upon artifact changes. | |
return this.getDeploymentScript(instanceDef); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have made the change.
The PR fixes to bugs
dockerComposeFromArtifact
type not able to fetch private artifactsdockerComposeFromArtifact
type not creating a necessary env file when only artifacts change.