diff --git a/.github/workflows/api-deploy-nonprod.yml b/.github/workflows/api-deploy-nonprod.yml index 4145ba6..988d210 100644 --- a/.github/workflows/api-deploy-nonprod.yml +++ b/.github/workflows/api-deploy-nonprod.yml @@ -106,6 +106,6 @@ jobs: run: | curl -u ${{ secrets.TEAMCITY_USERNAME }}:${{ secrets.TEAMCITY_PASSWORD }} \ -X POST \ - -H "Content-Type: text/plain" \ + -H "Content-Type: application/json" \ -d "buildType=id:${{ secrets.TEAMCITY_API_ID }}" \ "${{ secrets.TEAMCITY_URL }}/httpAuth/app/rest/buildQueue" \ No newline at end of file diff --git a/.github/workflows/api-deploy-prod.yml b/.github/workflows/api-deploy-prod.yml index f3a3aec..58ce3ec 100644 --- a/.github/workflows/api-deploy-prod.yml +++ b/.github/workflows/api-deploy-prod.yml @@ -106,6 +106,6 @@ jobs: run: | curl -u ${{ secrets.TEAMCITY_USERNAME }}:${{ secrets.TEAMCITY_PASSWORD }} \ -X POST \ - -H "Content-Type: text/plain" \ + -H "Content-Type: application/json" \ -d "buildType=id:${{ secrets.TEAMCITY_API_ID }}" \ "${{ secrets.TEAMCITY_URL }}/httpAuth/app/rest/buildQueue" diff --git a/.github/workflows/web-deploy-nonprod.yml b/.github/workflows/web-deploy-nonprod.yml index 8cf82df..e45bdef 100644 --- a/.github/workflows/web-deploy-nonprod.yml +++ b/.github/workflows/web-deploy-nonprod.yml @@ -106,6 +106,6 @@ jobs: run: | curl -u ${{ secrets.TEAMCITY_USERNAME }}:${{ secrets.TEAMCITY_PASSWORD }} \ -X POST \ - -H "Content-Type: text/plain" \ + -H "Content-Type: application/json" \ -d "buildType=id:${{ secrets.TEAMCITY_WEB_ID }}" \ "${{ secrets.TEAMCITY_URL }}/httpAuth/app/rest/buildQueue" \ No newline at end of file diff --git a/.github/workflows/web-deploy-prod.yml b/.github/workflows/web-deploy-prod.yml index 8c29b57..96b3c09 100644 --- a/.github/workflows/web-deploy-prod.yml +++ b/.github/workflows/web-deploy-prod.yml @@ -106,6 +106,6 @@ jobs: run: | curl -u ${{ secrets.TEAMCITY_USERNAME }}:${{ secrets.TEAMCITY_PASSWORD }} \ -X POST \ - -H "Content-Type: text/plain" \ + -H "Content-Type: application/json" \ -d "buildType=id:${{ secrets.TEAMCITY_WEB_ID }}" \ "${{ secrets.TEAMCITY_URL }}/httpAuth/app/rest/buildQueue" \ No newline at end of file