mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 13:11:19 -03:30
🧪🚑 Fix escaping EOLs in curl invocation (#15538)
This is a follow up for #15532.
This commit is contained in:
parent
cf25a09323
commit
ce2b8e9a9e
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -107,11 +107,11 @@ jobs:
|
||||
do
|
||||
curl \
|
||||
-v \
|
||||
--user "${{ vars.PDE_ORG_RESULTS_AGGREGATOR_UPLOAD_USER }}:${{ secrets.PDE_ORG_RESULTS_UPLOAD_PASSWORD }}"
|
||||
--user "${{ vars.PDE_ORG_RESULTS_AGGREGATOR_UPLOAD_USER }}:${{ secrets.PDE_ORG_RESULTS_UPLOAD_PASSWORD }}" \
|
||||
--form "xunit_xml=@${junit_file}" \
|
||||
--form "component_name=awx"
|
||||
--form "git_commit_sha=${{ github.sha }}"
|
||||
--form "git_repository_url=https://github.com/${{ github.repository }}"
|
||||
--form "component_name=awx" \
|
||||
--form "git_commit_sha=${{ github.sha }}" \
|
||||
--form "git_repository_url=https://github.com/${{ github.repository }}" \
|
||||
"${{ vars.PDE_ORG_RESULTS_AGGREGATOR_UPLOAD_URL }}/api/results/upload/"
|
||||
done
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user