Pre/Post Deployment Script

Attribute
Type
Description
Package Types Applicable

preDeploymentScript

string

Run an executable script before deploying an artifact. Users need to provide a path to the script file

  • unlocked

  • org-dependent unlocked

  • source

  • diff

postDeploymentScript

string

Run an executable script after deploying an package. Users need to provide a path to the script file

  • unlocked

  • org-dependent unlocked

  • source

  • diff

In some situations, you might need to execute a pre/post deployment script to do manipulate the data before or after being deployed to the org. sfp allow you to provide a path to a shell script (Mac/Unix) / batch script (on Windows).

The scripts are called with the following parameters. In your script you can refer to the parameters using positional parameters.arrow-up-right

Please note scripts are copied into the artifactsarrow-up-right and are not executed from version control. sfpowerscripts only copies the script mentioned by this parameter and do not copy any additional files or dependencies. Please ensure pre/post deployment scripts are independent or should be able to download its dependencies

Position
Value

1

Name of the Package

2

Username of the target org where the package is being deployed

3

Alias of the target org where the package is being deployed

4

Path to the working directory that has the contents of the package

5

Path to the package directory. One would need to combine parameter 4 and 5 to find the absolute path to the contents of the package

// Sample package 

{
  "packageDirectories": [
      {    
      "path": "src/data-package-cl",
      "package": "data-package-cloudlending",
      "type": "data",
      "versionNumber": "2.0.10.NEXT",
      "preDeploymentScript": "scripts/enableEmailDeliverability.sh"
      "postDeploymentScript": "scripts/pushData.sh"
    }
circle-exclamation

Last updated