From bf0b4018f2c4c95baeb5680d34b6672dee7a9e68 Mon Sep 17 00:00:00 2001 From: Sami Ekblad Date: Thu, 25 May 2023 13:34:43 +0300 Subject: [PATCH] parameter escape fix --- .github/workflows/directory-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/directory-publish.yml b/.github/workflows/directory-publish.yml index 3c4ec7a2..9f85b948 100644 --- a/.github/workflows/directory-publish.yml +++ b/.github/workflows/directory-publish.yml @@ -47,7 +47,7 @@ jobs: uses: wei/curl@v1 continue-on-error: false with: - args: -X POST "https://vaadin.com/vaadincom/directory-service/upload/${{env.RELEASE_URL_ID}}" -F "authKey=${{ secrets.DIRECTORY_AUTH_KEY }}" -F "publish=true" -F "releaseNotes=${{ github.event.release.body }}" -H "accept:\ */*" -H "Content-Type:\ multipart/form-data" -F "file=@${{env.RELEASE_ZIP_PATH}};type=application/zip" + args: -X POST "https://vaadin.com/vaadincom/directory-service/upload/${{env.RELEASE_URL_ID}}" -F authKey="${{ secrets.DIRECTORY_AUTH_KEY }}" -F "publish=true" -F releaseNotes="${{ github.event.release.body }}" -H "accept:\ */*" -H "Content-Type:\ multipart/form-data" -F "file=@${{env.RELEASE_ZIP_PATH}};type=application/zip" - name: Report upload failure if: ${{ job.status == 'failure' }} run: echo '${{ toJSON(job) }}' ; exit 1