diff --git a/.github/workflows/dispatches.yml b/.github/workflows/dispatches.yml index 469e8a988..c40e3eff2 100644 --- a/.github/workflows/dispatches.yml +++ b/.github/workflows/dispatches.yml @@ -23,14 +23,14 @@ jobs: private_key: ${{ secrets.GH_APP_PRIVATE_KEY }} - name: send peaceiris.com run: | - curl --silent -X POST "https://api.github.com/repos/peaceiris/peaceiris.com/dispatches" \ + curl -X POST "https://api.github.com/repos/peaceiris/peaceiris.com/dispatches" \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer ${{ steps.app.outputs.token }}" \ -H "X-GitHub-Api-Version: ${{ env.GH_API_VERSION }}" \ -d '{"event_type": "hugo-theme-iris", "client_payload": {"tag_name": "'"${GITHUB_REF_NAME}"'"}}' - name: send kbase run: | - curl --silent -X POST "https://api.github.com/repos/peaceiris/kbase/dispatches" \ + curl -X POST "https://api.github.com/repos/peaceiris/kbase/dispatches" \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer ${{ steps.app.outputs.token }}" \ -H "X-GitHub-Api-Version: ${{ env.GH_API_VERSION }}" \