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