-
Notifications
You must be signed in to change notification settings - Fork 78
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
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
Add support for missing package settings #3
Comments
@DavinCasey thanks for the suggestion. I'm not a packaging expert, but the experts will see this request. In the mean time and for my own edification, at what point are those values set if working through the Salesforce UI? |
In the Salesforce UI, you can go to the Package, click edit and you'll have options for Post Install Script, Uninstall Script, Configure Custom Link etc. These are the settings we need to set when deploying our code to the packaging org. If these values are not set in package.xml when deploying, the next version of the package (which is uploaded via our CI pipeline too) is uploaded WITHOUT a specified Post Install script or 'Configure' custom link. This is a huge problem for our customers as both settings are vital to customers in installing & using our app. |
Hey @dcarroll have you guys had a chance to look into this one yet? |
Definitely a bit blocker for us too! The fact that those settings get cleared out every time we push code to our packaging org is puzzling. |
We currently use |
@mzanini I'm having a hard time understanding the connection between Are you saying that when you deploy code, it's changing the settings on your package in the packaging UI? |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Currently, it is not possible to set the following package settings via SFDX:
What are you trying to do
We're trying to have a seamless packaging & release process via CI.
Describe the solution you'd like
force:source:convert has a --packagename parameter which allows us to set the element in package.xml. I'd like to see additional parameters to allow us to specify values for the settings listed above.
Describe alternatives you've considered
The only workable options we have right now are hackish workarounds:
The text was updated successfully, but these errors were encountered: