From fc52465472bd803e9b6aa3091087a467f23b90c6 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 16 Oct 2023 10:21:18 -0400 Subject: [PATCH] CI: Use -d instead of -F for Zotero ping (#6743) Fixes #6732 --- .github/workflows/merge.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index ccd78f9e4f..bbeb457d07 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -125,7 +125,7 @@ jobs: - name: ping Zotero servers if: github.repository == 'citation-style-language/styles' run: | - curl -H 'Content-Length:' -H "Authorization: $ZOTERO_UPDATE_TOKEN" -F 'payload={"type":"push","branch":"${{ steps.release.outputs.branch }}","status":0,"commit":"'$GITHUB_SHA'"}' https://styles-update.zotero.org:8826/ + curl -H 'Content-Length:' -H "Authorization: $ZOTERO_UPDATE_TOKEN" -d 'payload={"type":"push","branch":"${{ steps.release.outputs.branch }}","status":0,"commit":"'$GITHUB_SHA'"}' https://styles-update.zotero.org:8826/ - name: Copy workflows to locales repository if: github.repository == 'citation-style-language/styles' && steps.update.outputs.workflows == 'true'