Skip to content

Commit

Permalink
Fix --packaging-suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
jlantz committed Oct 14, 2024
1 parent 8786428 commit bd50657
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/feature-test-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
cci task run github_pull_request_snapshot \
--wait False \
--build-success ${{ job.status == 'success' }} \
--is-packaged false
--packaging-suffix U
fi
shell: bash

Expand All @@ -120,14 +120,14 @@ jobs:
--snapshot-id "${{ steps.start_snapshot.outputs.SNAPSHOT_ID }}" \
--build-success "${{ steps.prepare_org.outcome == 'success' && steps.run_tests.outcome == 'success' }}" \
--build-fail-tests "${{ steps.run_tests.outcome == 'failure' }}" \
--snapshot-is-packaged true \
--packaging-suffix U \
$([[ "${{ inputs.create_snapshot_commit_status }}" == "true" ]] && echo "--create-commit-status true") \
$([[ "${{ inputs.create_snapshot_environment }}" == "true" ]] && echo "--create-environment-status true")
elif [[ "${{ inputs.create_failure_snapshot }}" == "true" && ("${{ steps.run_tests.outcome }}" == "failure" || "${{ steps.prepare_org.outcome }}" == "failure") ]]; then
cci task run github_pull_request_snapshot \
--build-success false \
--build-fail-tests "${{ steps.run_tests.outcome == 'failure' }}" \
--snapshot-is-packaged true \
--packaging-suffix U \
$([[ "${{ inputs.create_snapshot_commit_status }}" == "true" ]] && echo "--create-commit-status true") \
$([[ "${{ inputs.create_snapshot_environment }}" == "true" ]] && echo "--create-environment-status true")
fi
Expand Down

0 comments on commit bd50657

Please sign in to comment.