Skip to content

Commit

Permalink
Merge pull request #51 from muselab-d2x/jlantz/fix-release-name-quota…
Browse files Browse the repository at this point in the history
…tion

Fix release name quotation in Salesforce
  • Loading branch information
jlantz authored Oct 31, 2024
2 parents 1e4d095 + 8c2aa40 commit 313f90d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-1gp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
- name: Report Inputs
run: |
echo "Release Name: ${{ inputs.release-name }}" | tee -a "${GITHUB_STEP_SUMMARY}"
echo 'Command: cci flow run release_production --org packaging $([[ "${{ inputs.release-name }}" ]] && echo " -o upload_production__version_name_template \\"${{ inputs.release-name }}\\"")' | tee -a "${GITHUB_STEP_SUMMARY}"
echo 'Command: cci flow run release_production --org packaging $([[ "${{ inputs.release-name }}" ]] && echo " -o upload_production__version_name_template \${{ inputs.release-name }}")' | tee -a "${GITHUB_STEP_SUMMARY}"
- name: Deploy to Packaging Org
if: ${{ inputs.skip-deploy == false }}
run: cci flow run ci_master --org packaging
- name: Build Production Package
run: |
cci flow run release_production --org packaging $([[ "${{ inputs.release-name }}" ]] && echo " -o upload_production__version_name_template \"${{ inputs.release-name }}\"")
cci flow run release_production --org packaging $([[ "${{ inputs.release-name }}" ]] && echo " -o upload_production__version_name_template ${{ inputs.release-name }}")
shell: bash
- name: Run Release Test in Scratch Org
if: ${{ inputs.skip-test == false }}
Expand Down

0 comments on commit 313f90d

Please sign in to comment.