start-packaging-pr #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Unique name for this workflow | |
name: Packaging on PR | |
# Workflow starts when receiving custom event sent by CI workflow | |
on: | |
repository_dispatch: | |
types: [start-packaging-pr] | |
# Workflow environment variables | |
env: | |
# Is the PR base branch a prerelease branch | |
IS_PRERELEASE: ${{ github.event.client_payload.isPrelease }} | |
# Jobs to be executed | |
jobs: | |
packaging: | |
runs-on: trailheadapps-Ubuntu | |
steps: | |
# Install Salesforce CLI | |
- name: 'Install Salesforce CLI' | |
run: | | |
npm install @salesforce/cli --location=global | |
nodeInstallPath=$(npm config get prefix) | |
echo "$nodeInstallPath/bin" >> $GITHUB_PATH | |
sf --version | |
# Checkout the source code | |
- name: 'Checkout source code' | |
uses: actions/checkout@v4 | |
# Store secret for dev hub | |
- name: 'Populate auth file with DEVHUB_SFDX_URL secret' | |
shell: bash | |
run: | | |
echo ${{ secrets.DEVHUB_SFDX_URL }} > ./DEVHUB_SFDX_URL.txt | |
secretFileSize=$(wc -c "./DEVHUB_SFDX_URL.txt" | awk '{print $1}') | |
if [ $secretFileSize == 1 ]; then | |
echo "Missing DEVHUB_SFDX_URL secret. Is this workflow running on a fork?"; | |
exit 1; | |
fi | |
# Authenticate dev hub | |
- name: 'Authenticate Dev Hub' | |
run: sf org login sfdx-url -f ./DEVHUB_SFDX_URL.txt -a devhub -d | |
# Remove auth file | |
- name: 'Remove auth file' | |
run: rm -f ./DEVHUB_SFDX_URL.txt | |
# Create package version and extract its id | |
- name: 'Create package version' | |
id: createPackageVersion | |
run: | | |
set +e | |
json=$(sf package version create -p LWCRecipes -x -w 20 -f config/project-scratch-def.json --json) | |
echo $json | |
status=$(echo $json | jq '.status') | |
if [ $status == "0" ]; then | |
packageVersionId=$(echo $json | jq -r '.result.SubscriberPackageVersionId') | |
echo "packageVersionId=$packageVersionId" >> $GITHUB_OUTPUT | |
else | |
echo "Failed to create package version" | |
fi | |
exit $status | |
# Wait for package replication | |
- name: 'Wait for package replication' | |
run: sleep 360s | |
# Create prerelease scratch org | |
- name: 'Create prerelease scratch org' | |
if: ${{ env.IS_PRERELEASE }} | |
run: sf org create scratch -f config/project-scratch-def.json -a scratch-org -d -y 1 --release=preview | |
# Create scratch org | |
- name: 'Create scratch org' | |
if: ${{ !env.IS_PRERELEASE }} | |
run: sf org create scratch -f config/project-scratch-def.json -a scratch-org -d -y 1 | |
# Install new package in scratch org | |
- name: 'Install new package version in scratch org' | |
run: sf package install -p ${{ steps.createPackageVersion.outputs.packageVersionId }} -w 10 -o scratch-org -r | |
# Housekeeping | |
- name: 'Delete scratch org' | |
if: always() | |
run: sf org delete scratch -p -o scratch-org |