summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSviatoslav Sydorenko (Святослав Сидоренко) <wk@sydorenko.org.ua>2024-09-17 22:58:58 +0200
committerGitHub <noreply@github.com>2024-09-17 22:58:58 +0200
commitce2b8e9a9e50ff75b74e0f2e3652e8482456ad85 (patch)
tree7d9c18fe5401e777d66187e0ff89d3105e316581 /.github
parent🧪 Upload ansible-test coverage to Codecov (#15527) (diff)
downloadawx-ce2b8e9a9e50ff75b74e0f2e3652e8482456ad85.tar.xz
awx-ce2b8e9a9e50ff75b74e0f2e3652e8482456ad85.zip
🧪🚑 Fix escaping EOLs in `curl` invocation (#15538)
This is a follow up for #15532.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 72eac92a01..a41c143451 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -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