Skip to content

Commit

Permalink
Merge pull request #33 from muselab-d2x/jlantz/fix-release
Browse files Browse the repository at this point in the history
Fix release-1gp.yml workflow
  • Loading branch information
jlantz authored Oct 30, 2024
2 parents 0acf9ee + 096ec75 commit 8c3459c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-1gp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +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 }}'")
run: |
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 8c3459c

Please sign in to comment.