Skip to content

Commit 4d256a3

Browse files
committed
ci: fix documentation build for new patches
curl command was not alligned with the ci-docker-build.yml workflow, so it was failing due to HTTP request error. Reviewed-by: Petr Vorel <pvorel@suse.cz> Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com>
1 parent f2b4bb1 commit 4d256a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci-sphinx-doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
git config --global --add safe.directory "$GITHUB_WORKSPACE"
4747
4848
git checkout -b review_patch_series_"${{ inputs.SERIES_ID }}"
49-
curl -k "${{ inputs.SERIES_MBOX }}" | git am
49+
curl -k -L --retry 3 --max-redirs 1 --location-trusted "${{ inputs.SERIES_MBOX }}" | git am
5050
5151
./ci/tools/patchwork.sh state "${{ inputs.SERIES_ID }}" "needs-review-ack"
5252

0 commit comments

Comments
 (0)