We build solutions in individual sandbox environments, and when we're done with a task we move it to a shared dev environment via the pac cli using a series of steps:
pac solution export
pac solution unpack
Review the metadata retrieved from the sandbox environment, prepare a PR with updates we want to make, when the PR is completed a pipeline runs that packs, imports, and publishes the solution:
pac solution pack
pac solution import
pac solution publish
We want to add a choice value to the OwnershipCode column on the Account table. The field we want to add is "Government", it is showing up in the metadata, the solution packs, imports, and publishes successfully, but the choice value is not showing up in the shared dev environment. Both of these environments are unmanaged. Once testing is done in the shared dev we move it to stage and then ultimately prod which are managed environments, but not part of the problem here. Right now the issue is that the choice we want to add to Account.OwnershipCode is not showing up in the shared dev environment despite that choice being in the metadata on the Account entity and the commands and pipelines all running successfully. Can anybody tell me why?