Trigger TeamCity Builds #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger TeamCity Builds | |
on: | |
workflow_dispatch: # Allows manual triggering | |
jobs: | |
trigger-teamcity: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger TeamCity Build for alpha.bloomlibrary.org | |
uses: fjogeleit/http-request-action@v1 | |
with: | |
url: "${{ secrets.TEAMCITY_URL }}/app/rest/buildQueue" | |
method: "POST" | |
contentType: "application/json" | |
customHeaders: '{"Authorization": "Bearer ${{ secrets.TEAMCITY_TOKEN_RUN_BUILD }}"}' | |
data: '{"buildType": {"id": "Bloom_BloomLibraryOrg_BloomLibraryAlphaAlphaBloomlibraryOrgContinuous"}}' | |
- name: Trigger TeamCity Build for Bloom Reader Alpha | |
uses: fjogeleit/http-request-action@v1 | |
with: | |
url: "${{ secrets.TEAMCITY_URL }}/app/rest/buildQueue" | |
method: "POST" | |
contentType: "application/json" | |
customHeaders: '{"Authorization": "Bearer ${{ secrets.TEAMCITY_TOKEN_RUN_BUILD }}"}' | |
data: '{"buildType": {"id": "Bloom_BloomReader_BloomReaderMasterAlphaContinuousPublish"}}' | |
- name: Trigger TeamCity Build for Bloom Desktop Alpha | |
uses: fjogeleit/http-request-action@v1 | |
with: | |
url: "${{ secrets.TEAMCITY_URL }}/app/rest/buildQueue" | |
method: "POST" | |
contentType: "application/json" | |
customHeaders: '{"Authorization": "Bearer ${{ secrets.TEAMCITY_TOKEN_RUN_BUILD }}"}' | |
data: '{"buildType": {"id": "bt222"}}' | |
- name: Trigger TeamCity Build for dev-alpha.bloomlibrary.org | |
uses: fjogeleit/http-request-action@v1 | |
with: | |
url: "${{ secrets.TEAMCITY_URL }}/app/rest/buildQueue" | |
method: "POST" | |
contentType: "application/json" | |
customHeaders: '{"Authorization": "Bearer ${{ secrets.TEAMCITY_TOKEN_RUN_BUILD }}"}' | |
data: '{"buildType": {"id": "Bloom_BloomLibraryOrg_BloomLibrary2masterDevAlphaBloomlibraryOrgContinuous"}}' |