Skip to content

Commit

Permalink
Updated comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaren Yach committed Jan 25, 2019
1 parent 375b895 commit 481910a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ pipelines:
- export TESTLEVEL=RunLocalTests
#Create SFDX directory
- mkdir sfdx
#Install SFDX
#Install Salesforce CLI
- wget -qO- $CLIURL | tar xJ -C sfdx --strip-components 1
- "./sfdx/install"
- export PATH=./sfdx/$(pwd):$PATH
- sfdx --version
- sfdx plugins --core
#Decrypt server key
- openssl enc -nosalt -aes-256-cbc -d -in assets/server.key.enc -out assets/server.key -base64 -K $DECRYPTION_KEY -iv $DECRYPTION_IV
#Authorize Target Org
#Authorize target org
- sfdx force:auth:jwt:grant --instanceurl https://test.salesforce.com --clientid $CONSUMER_KEY --jwtkeyfile assets/server.key --username $USER_NAME --setalias UAT
#Deploy to Target Deployment Org and Run Unit Tests
#Deploy to target deployment org and run unit tests
- sfdx force:mdapi:deploy --wait 10 --deploydir $DEPLOYDIR --targetusername UAT --testlevel $TESTLEVEL
#Example shows how to run a check only deploy.
#- sfdx force:mdapi:deploy --checkonly --wait 10 --deploydir $DEPLOYDIR --targetusername UAT --testlevel $TESTLEVEL

0 comments on commit 481910a

Please sign in to comment.